ELOVEZ please help me how to connect to mysql. this is the old script i used by PHPTRIAD on windows, but its didnt work in MAC with MAMP $link = mysql_connect ("$host", "$user", "$pass") or die ("fail to connect"); $wmk="insert into faq //name of table// (tanggal,nama,email,pertanyaan) values('$tanggal','$nama','$email','$pertanyaan')"; $query=mysql_query ($wmk,$link); { echo " Sukses pengentrian tabel"; } { echo " Gagal pengentrian tabel "; } echo("Thank you $nama for your question, please wait the confirm for a moment, Your data:"); echo("tanggal :$tanggal"); echo("pertanyaan : $pertanyaan"); |