Well actualy what i want to do is.
I have a Select from db which in case the DB contain information.the script will create a Select Form.And when i will use the select option , i can UPDATE my desire info.
in a few words,it's 3 Input texts + Select Form , when i choose one option from select and fill up those 3 inputs , some things from my site will be updated.
What i'm try to do is , to display the info from db in the Value option of the input fields when i choose one option from select.
But i realize it's little bit complicated to do this, i thought will work with onclick or onload option and some changes on the php code , but is not that simple.
$sql = "SELECT * FROM welcome";
$rows = $conn->sqlExec($sql);
$nr_row = $conn->num_rows;
$pag .='
<span class="styleform"><h4>Edit About Section !</h4></span>
<br />
<script type="text/javascript" src="checkjs/welcome.js"></script>
<form method="post" action="aboutsend.php" onsubmit="return checkForm(this)";>
<table border="0" cellspacing="0" cellpadding="1" style="border:1px solid #888888; padding:1px;">
<tr><td><span class="styleform">Select Paragraph:</span></td><td>
<select name="paragraphs" id="paragraphs">
<option>Select Paragraph</option>
';
foreach($rows as $row) {
$pag .='<option value="'.$row['id'].'" >Paragraph '.$row['id'].'</option>';
}
$pag .='
</select>
</td></tr>
<tr><td><span class="styleform">Principal Title About Us :</span></td><td><input type="text" name="sttitle" id="sttitle" size="50" /></td></tr>
<tr><td><span class="styleform">Secont Title About Us :</span></td><td><input type="text" name="sectitle" id="sectitle" size="50" /></td></tr>
<tr><td><span class="styleform">Content About Us :</span></td>
<td><textarea name="content" id="content" rows="7" cols="52"></textarea></td></tr>
<tr><td><span class="styleform">Edit About Us:</span></td><td><input type="submit" name="updwelcome" value="Edit Info" /></td></tr>
</table>
</form>
The code is this one.is the old code , i give up to continue this task.
I just think could works if i make a select with all info , i put them intro array and with some js code to fill up the inputs , like onload Paragraph 1 display the array ..but i don't have enaught knowledges about js or ajax