Jump to content

grim1208

Members
  • Posts

    89
  • Joined

  • Last visited

    Never

Contact Methods

  • AIM
    grim1208
  • Website URL
    http://www.newwebprojects.net

Profile Information

  • Gender
    Male

grim1208's Achievements

Member

Member (2/5)

0

Reputation

  1. you don't have your <form> tag closed. see if that helps out
  2. that shouldn't be an issue. i'll look closer at this toward the end of the day if someone else hasn't picked this up and helped you out. i suggest going through your loop where you're querying the data and inide of it build your nodes.
  3. As shown, the plugin name is: WP Pending Post Notifier I am not receiving any errors on the mail. my bad. i'm testing this on my server to see if i can help you fix this.
  4. this looks legit. what's the name of the plugin? are there any errors coming from your mail server? or logs?
  5. It would be helpful to us if you could point out what issues you are having.
  6. mysql_fetch_assoc() returns an associative array. $project_result_num should be an int though ...
  7. My friend, here's a quick tutorial using jQuery to accomplish what you're looking for. http://webcloud.se/code/jQuery-Collapse/
  8. <? = short tag .... <?php = correct way, even though <? is not incorrect
  9. var exp = "/^[a-zA-z]$/"; var mystring = "Apple"; if(!(mystring.match(exp))) { return false; } else { return true; } code not tested
  10. welcome to the forums bhi0308. do you have any goals in mind as you are learning php?
  11. no one on these forums has ever customized a mass mailing application? no advice here? ... lol
  12. myString.match(/your_expression/)
  13. try defining username outside of the function. making code look like this <? $username = $_POST['username']; // defines username validUsername($username); // this calls the function function validUsername($username) { $sql = "SELECT * FROM tableA WHERE username = '$_POST[username]' "; $sql_result = mysql_query($sql); if (mysql_num_rows($sql_result) !=0) { $isValid = true; } else { $isValid = false; } return $isValid; } ?>
×
×
  • 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.