Jump to content

quick question


the-botman

Recommended Posts

hi guys ..

 

i want to know how do i check if the name is left blank and add a default text if it is blank this is the part that adds the name 

Name: <input type="text" name="name" /> 

thanks in advance

Botman

 

You could do something as simple as this with PHP:

Name: <input type="text" name="name" value="<?php if (!isset($_POST['name'])){echo "Default";} ?>" />

So if the value of whatever, in my example a POST or SESSION variable.. then it'll echo default text. If this is what you want..

Link to comment
https://forums.phpfreaks.com/topic/183959-quick-question/#findComment-971094
Share on other sites

this is my whole code

  echo '<div class="hd2"><center><font color=#666666><strong>Soccer Kit Generator</strong></font></center></div><br>'."\n";
    echo '        <form method="post">'."\n";       
    echo '  Name: <input type="text" name="name" />'."\n";    
    echo '  Number: <select name="number">'."\n";        
    echo '   <option value="0" selected="selected">0</option>'."\n";                  
for($i = 1; $i <= 44; ++$i) {          
    echo ' <option value="' . $i . '">' . $i . '</option>'."\n"; }          
    echo '                  </select><br />';       
    echo '          <input type="submit" value="submit" />'."\n";

Link to comment
https://forums.phpfreaks.com/topic/183959-quick-question/#findComment-971100
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.