lug-bg: PHP edin prost primer
- Subject: lug-bg: PHP edin prost primer
- From: unitrans@xxxxxx (Iavor)
- Date: Wed, 06 Jun 2001 11:11:31 +0300
Zeh si edin PHP spravo4ni i imashe edin primer ama neshto ne trygva
ako nqkoi moje da go pregleda i dami go prati popraven shesy mu mnogo
blagodaren
na http://free.top.bg/unitrans/ip.php3 sym go ka4il
Primer: tva nqkakava Obrabotka na formi s danni
pita za firs name i last name syshto i za interests
<HTML><head><title>PHP example</title></HEAD>
<body>
<H1>Form Example</H1>
<?
function show_form($first="",$last="",
$interest="") {
$options=array("Sports","Busniness","Travel","shopping","Computers");
if(empty($interest)) $interest=array(-1);
?>
<FORM ACTION="ip.php3" METHOD="POST">
First Name:
<INPUT TYPE=text NAME=first
VALUE="<?echo $first?>">
Last Name:
<INPUT TYPE=text NAME=Last
VALUE="<?echo $last?>">
Interest:
<SELECT MULTIPLE NAME=interest[]>
<?
for($i=0, reset($interest);
$i<count($options);$i++){
echo"<OPTION";
if(current($interest)==$options[$i]{
echo "SELECTED";
next($interest);
}
echo">$options{$i}\n";
}
?>
</SELECT>
<INPUT TYPE=submit>
</form>
<? }
if(!isset($first)) {
show_form();
}
else {
if(empty($first) || empty($last) ||
count($interest)==0) {
echo "You did not fill in all the";
echo"fields,please try again.\n";
show_form($first,$last,$interests);
}
else {
echo "Thank you, $first $last, you ";
echo "Selected ".join(" and ",$interest);
echo "as your interest.\n";
}
}
?>
</body></html>
-----------------------------
Free mail from www.dir.bg!
===========================================================================
A mail-list of Linux Users Group - Bulgaria (bulgarian linuxers)
http://www.linux-bulgaria.org/ Hosted by Internet Group Ltd. - Stara Zagora
|