Recent content by Sujacob

  1. S

    Need help with reCAPTCHA PHP Submission!! Easy question!?

    I can't seem to get this to work, I created a form that goes through reCAPTCHA, yet I have no idea how this works because I never deal with multiple action/php mail together. For example, I have 3 files: contact.php verify.php (verify recaptcha) submitform.php (php mail() submit)...
  2. S

    Help - php mail function syntax!?

    Ok, im trying to create a send a comment page and I got everything somewhat working so far, except that I dont know how to call the function <? function sen() { $to = "[email protected]"; $email = $_REQUEST['email']; $subject = "Contact Us $email"; $message = $_REQUEST['message']; $headers = "From...
  3. S

    PHP Syntax error - someone that know PHP help please!!?

    Ok, Im getting an error in this php code. code if(isadmin()) { if($_POST['city']!='' || $_POST['zip']!='') { if($_POST['zip']!='') $result = mysql_query("SELECT * FROM prerecycle WHERE zip='$_POST[zip]' ORDER BY zip"); else if($_POST['city']!='') $result = mysql_query("SELECT * FROM prerecycle...
  4. S

    php database syntax - help please!!?

    Ok, Im getting an error in this php code, MySQL response was "mysql_num_rows(): supplied argument is not a valid MySQL result resource in ..site.. on line 195" code if(isadmin()) { if($_POST['city']!='' || $_POST['zip']!='') { if($_POST['zip']!='') $result = mysql_query("SELECT * FROM...
  5. S

    How can you make a next/previous button for a Javascript image gallery? CSS/HTML?

    Is there a way to have a small button somewhere near the image that moves forward/backward in Javascript? This is what I have so far. <script type="text/javascript"> var image1=new Image() image1.src="images/get_involved_images/im1.jpg" var image2=new Image() image2.src="etc" [etc]. //-->...
Back
Top