While displaying the data from the database on a text box, I can access only the first part of the name. For example, if the name is 'Five Star', only the name 'Five' is displayed. Can you help in this? I'm just a beginner.
This is the code i've used echo "<tr><td>Reg.No.:</td><td width='200'><input type='text' name='reg' value=".$row[RegNo]."></td></tr>";
Persi 0 Newbie Poster
Recommended Answers
Jump to Post— Aser Gado 0How does the text look like in the database? Five Star? or Five_Star?
Jump to Post— Member #120589Names need to be single words. No spaces. When you say 'name', I'm assuming you mean the name attribute. If not, what do you mean?
Jump to Post— amitengg 0Hello,
please check below code:<?php
$reg=$row[RegNo];echo "<tr><td>Reg.No.:</td><td width='200'><input type='text' name='reg' value='$reg'></td></tr>";
?>
Jump to Post— pritaeas 2,276If the value attribute is used without quotes, then the space (after Five in your case) will be assumed as the separator for the next attribute.
<!-- this was your output --> <input type='text' name='reg' value=Five Stars /> <!-- this is what it should be (as amitengg …
Jump to Post— Member #120589Are you using php to output the whole html?
either
<input type="text" name="name" value="<?php echo $row['name']; ?>"><br/>OR
echo "<input type=\"text\" name=\"name\" value=\"{$row['name']}\"><br/>";
All 19 Replies
Aser Gado 0 Junior Poster in Training
Member #120589
vaultdweller123 32 Posting Pro
amitengg 0 Newbie Poster
kimhanu -3 Newbie Poster
pritaeas commented: Do not hijack a thread, start your own. -3
pritaeas 2,276 Most Valuable Poster Moderator Featured Poster
Member #120589 commented: Ah! Now I get it. Yes, agree. +15
Persi 0 Newbie Poster
Persi 0 Newbie Poster
Member #120589
pritaeas 2,276 Most Valuable Poster Moderator Featured Poster
Persi 0 Newbie Poster
pritaeas 2,276 Most Valuable Poster Moderator Featured Poster
Persi 0 Newbie Poster
Sorcher 6 Junior Poster
Member #120589
karthik_ppts 81 Posting Pro
Persi 0 Newbie Poster
pritaeas 2,276 Most Valuable Poster Moderator Featured Poster
Persi 0 Newbie Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.