Jump to content

MadTechie

Staff Alumni
  • Posts

    9,409
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by MadTechie

  1. try $searchtype = mysql_real_escape_string($_POST['searchtype']); $query="Select * FROM people WHERE type=".searchtype; D'oh too slow
  2. I don't see session_start(); that maybe the problem
  3. the Header tag doesn't need to at the top.. just remove the echos.. also click solved (bottom in the blue bar)
  4. remove the echo's if you MUST have a page telling the user their being redirected then create a redirect page that uses javascript to redirect them as a side note i'm sure you should have if (mysql_num_rows($result) >0) instead of if (mysql_num_rows($result) >"0") same for the ==
  5. you need to have <?php session_start(); ?> at the start of you php code
  6. change the $desc = "$_GET[description]"; $sev = "$_GET[severity]"; $memid = "$_GET[memberid]"; $ww_id = "$_GET[choice]"; to $desc = $_GET['description']; $sev = $_GET['severity']; $memid = $_GET['memberid']; $ww_id = $_GET['choice'];
  7. Please click solved trust me to day may advise has been like Microsofts advice it maybe correct (attimes) but its also useless when formatted incorrectly
  8. Use Ajax to grab the info from a php file and return the info to a span or Div ajax is a large subject so i suggect to checkout that section.
  9. $strTemp="<A HREF ='IssueDetails.php?ID=" .$strTemp1. "\" target='_blank' >".$strTemp2. " </A>";
  10. ROFL i messed up frost110 example was what i ment..
  11. DB.php doesn't exist in http://www.blankdiscmedia.com/newhtml/ check you uploaded it
  12. your only updating $filename $query = "INSERT INTO $filename VALUES ('$submitdate','$Page','$weblink','$rss', '$name', '$email')"; try $query = "INSERT INTO 'submitdate','Page','weblink','rss', 'name', 'email' VALUES ('$submitdate','$Page','$weblink','$rss', '$name', '$email')";
  13. <?php require ("includes/config.php") ?> <?php global $offline_variable; if ($offline_variable == 1) { die( '$mosConfig_offline_message' ); } ?>
  14. What do you mean by "Local Folder"? Local to the Host (Webserver) or Local to Client (Clients PC) as for FTP access you can create a new FTP account with limited access even drop access, (upload only) finding the path to the files/folder shoudn't be that hard, ie /file_parser.php /uploads/file1.jpg /uploads/file2.jpg /uploads/file3.jpg file_parser.php would look in "uploads/" folder! or am i missing somthing?
  15. ooow, research time, thanx for all your time mainewoods, i knew i was pushing it a little with, my questions but you have been a great help, thank you Still looking for the Solved button!!
  16. LOL I get ya
  17. Try <?php if ($_GET['ref']) echo "<input type=\"hidden\" name=\"referer\" value=\"".$_COOKIE['mysite']."\" />"; ?>
  18. and how did that Thread end????
  19. I mean with Surely if the time hits 0 and the user isn't on the page it will just wait until the use returns ? i'm useless at javascript but from my understanding i didn't think it would work (its still a solution)
  20. Erm... ??? is it possible for return a function for use with a form item ? ie AJAX returns a text box with a javascript attached to the onchange. but the javascript in question also of been returned via ajax?? what i have working now is great but if i could do the above then..
  21. Well i have played with it a little and returned echo "alert('hello world');"; and it failed but..... <script>alert('hello world');</script> WORKED Thank you soooo very much. [move]Thank You, for all your time i own you big time, just don't ask for help with javascript, heehee Thank you again[/move] Erm.. Solved button has gone..!
  22. Yes.. true but for some reason i don't look at Java as a Web Language as it have its client own engine... but then again IE has hampster for an engine i think flash can also do it..
  23. Cool
  24. Frost was the microtime_float function written for PHP4 ? as i know PHP5 has microtime_float builtin.. Just wondering
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.