Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: phpgramma
  • Order by date
  1. phpgramma

    mysql interoffice setup

    I know that I can setup an intranet using MySQL. That's not my question. I prefer to develop in PHP/MySQL, even for internal corporate applications, but my client wants to use MSAccess as their DB shell. Is there a way to integrate Access to an ODBC (with which I have no experience) or...
  2. phpgramma

    Euro symbol

    I'm not sure exactly, but have you tried parsing the text stream and replace with €
  3. phpgramma

    basic - jumpt to URL

    there are two other ways off the top of my head: this one works great in IE, but sometimes NN is pretty picky and it doesn't work (this goes between the head tags): <meta http-equiv="refresh" content="0;url=place.htm"> and going on the post above mine, javascript can be performed anywhere in...
  4. phpgramma

    bulk mail not sending

    I always wind up doing this. I fixed it- very simple. The script was fine, I was just not correctly declaring a variable.... rrr.
  5. phpgramma

    bulk mail not sending

    I have a script that is supposed to send mail to a group of users in a "chapter" (each user has a field: chapter_id, which corresponds to the "chapter" they belong to). I don't know whether it's the server settings or what, but the mail does not send correctly. here's the code...
  6. phpgramma

    INSERT should be perfect but returns an error

    oh yeah. duh. i forgot about that. thanks. [thumbsup]
  7. phpgramma

    Need help creating organisational &quot;chart&quot; in MySQL

    why don't you try adding a second table and a new field in your Users table. The new field should be an ID number corresponding to the auto_id in the new table. The new table should just be a list of yes or no answers to permission questions: example table setup MemberPermissionsTable auto_id...
  8. phpgramma

    INSERT should be perfect but returns an error

    So here's my query: $sql="INSERT INTO news (date,time,member_id,chapter_id,headline,article,show) VALUES ('$date','$time','$poster_id','$chapter_id','$headline','$article','$show')"; but for some reason I keep getting the error: "You have an error in your SQL syntax. Check the manual that...
  9. phpgramma

    unlink works sometimes

    ah ha! I just figured out that the images themselves are okay, but I was using IE and it was just displaying the file in the Cache. Problem solved (after 2 hours! always something stupid....)
  10. phpgramma

    unlink works sometimes

    I have a script that uses the same filename over and over again for uploads. For example: pic1.jpg, pic2.jpg, picn.jpg where n is an auto_id from the database corresponding to the user. The script takes a file upload from the user, deletes the old picn.jpg, and then uses move_uploaded_file()...
  11. phpgramma

    HTML - Log On & Password

    it's been disabled client-side, so inErnet or intrAnet are inconsequential. why don't you use POST variables? You can have the link to the page submit the form and therefore pass POSTs to the new page, no matter what domain you're going to/from. This is more secure anyway because the users...
  12. phpgramma

    show/hide table rows using ONLY CSS

    awesome. thanks!
  13. phpgramma

    PHP Newbie

    Here's a snippet from one of my scripts, but before pasting, definitely read what skyflyer sent you... $username=$_POST['username']; //these come from the form on the page before this one $password=$_POST['password']; connectDB(); //This is a function I made for mysql_connect() and...
  14. phpgramma

    PHP Cookie Session help

    did that work?
  15. phpgramma

    PHP order into columns

    the easiest thing to do would probably be to add another two variables that count which column you're on. Also put your <table> tags outside of the loop so you can have as many rows/cols as you want. $totalcols=2; //or more $currentcol=0; echo "<table width='420' border='0' cellspacing='0'>"...
  16. phpgramma

    Background fade

    speaking of the macromedia site, how did they do the transition "wipe" effect on page load? javascript or other?
  17. phpgramma

    show/hide table rows using ONLY CSS

    alright then. I guess I agree with you taylorantone. I've been searching for hours for a css way to do it and couldn't find anything. so how do I use the javascript so that if they browse without it, it'll just display the whole thing anyway?
  18. phpgramma

    show/hide table rows using ONLY CSS

    well, check out this link: http://stunicholls.myby.co.uk/book/ That's the idea of what I want to do, but I want to hide tables instead. And this guy didn't use any javascript at all.
  19. phpgramma

    show/hide table rows using ONLY CSS

    I have a form that has "Required" fields and "Optional" fields. Next to the "Optional" title, I want a button/link that shows or hides the fields when clicked. I don't really want to use Javascript (even though I already know how to do that!) because of how people are disabling Javascript and...
  20. phpgramma

    PHP Cookie Session help

    i didn't study this too long, but it looks like your if...else statements may be closed improperly Your code: <option value="5">5 </select> </form> </div> <? } else echo "<strong>You have already voted for this icon!</strong>"; ?> </td></tr> </table> <? } } else { ?> <br> <br> Should...

Part and Inventory Search

Back
Top