saya coba test script php dimana input data berasal dari user. Form input dari user sbb :
<HTML>
<HEAD></HEAD>
<BODY>
<FORM METHOD=GET ACTION="text.php">
Who is your favourite author?
<INPUT NAME="Author" TYPE="TEXT">
<BR>
<BR>
<INPUT TYPE=SUBMIT>
</FORM>
</BODY>
</HTML>

code untuk text.php sbb:
<HTML>
<HEAD></HEAD>
<BODY>
Your favorite author is:
<?php
echo("" . $Author . "");
?>
</BODY>
</HTML>
pada saat diinputkan, muncul error sbb:
"Your favorite author is: Warning: Undefined variable: Author in c:\documents and settings\administrator\apache\htdocs\begphp\ch03\text.php on line 7 "
Waktu saya coba pada PC lain dengan konfigurasi yang sama, ternyata tidak error. Apanya yang salah ya ?
thank's
note : saya pakai apache 1.3.22 dengan OS Win-Xp dan php versi 4.1.1
--------------------------------------------------------------------- Jumlah pelanggan (updated daily): 220 Untuk berhenti berlangganan, kirim email ke: [EMAIL PROTECTED] Arsip milis, raw: http://klas.regex.com/archive/ Arsip milis, hyperlink: http://klas.regex.com/arsipmilis/arsip/
