Jump to content

Onblur to MySQL dynamic validation


premora

Recommended Posts

Hello all.

 

I have an ID Messaging system where the user puts in the ID of the user they want to contact and it sends a message to their Inbox - Great.

 

What I need is a feature where the user puts in the ID and onblur another textbox populates with the users Name from the MySQL Database without having to reload the page so they know they have the right person.

 

I am pretty new to this so have no idea where to start with this population feature.  Here's my form code.  Hope someone can help.

 

<table width="450" border="0">

        <tr>

          <td> <form name="messages" method="post" action="inbox_messages_send.php" onsubmit="return checkform(this);">

              <table width="411" height="227" border="0">

  <tr>

                  <td align="right" bgcolor="#EAEAEA"><font size="2" face="Arial, Helvetica, sans-serif">From:</font></td>

                  <td bgcolor="#EAEAEA"><input type="hidden" name="sentBy" size="3" maxlength="3" align="absmiddle" value="<?php echo $_SESSION['member_ID']; ?>">

  <input type="hidden" name="fname" value="<?php print email('name'); ?>"><input type="hidden" name="lname" value="<?php print email('lname'); ?>">

                    <font size="1" face="Arial, Helvetica, sans-serif">(Your ID

                    is automatically attached)</font></td>

                </tr>

                <tr>

                  <td align="right" bgcolor="#EAEAEA"><font size="2" face="Arial, Helvetica, sans-serif">To:</font></td>

                  <td bgcolor="#EAEAEA"><input type="text" name="L_ID" size="3" maxlength="3" align="absmiddle">

                    <font size="1" face="Arial, Helvetica, sans-serif">(Member's

                    ID)</font></td>

                </tr>

<tr>

                  <td align="right" bgcolor="#EAEAEA"><font size="2" face="Arial, Helvetica, sans-serif">Subject:</font></td>

                  <td bgcolor="#EAEAEA"><input type="text" name="subject"></td>

                </tr>

                <tr>

                  <td align="right" bgcolor="#EAEAEA"><font size="2" face="Arial, Helvetica, sans-serif">Message:</font></td>

                  <td bgcolor="#EAEAEA"><textarea cols="35" rows="5" name="email_message"></textarea></td>

                </tr>

               

<tr>

                  <td align="right"> </td>

                  <td><input type="submit" name="message" value="Send Message"></td>

                </tr>

              </table>

            </form></td>

        </tr>

      </table>

Link to comment
https://forums.phpfreaks.com/topic/235508-onblur-to-mysql-dynamic-validation/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.