Forum: Absolute Beginners
05-19-2010, 06:52 AM
|
|
Replies: 5
Views: 1,063
I always use notepad++ for this purpose. Go to...
I always use notepad++ for this purpose. Go to search, then find in files.
It has three modes of search:
normal - just a normal search
extended (\n,\r,\t ...) - use special charcters such as line...
|
Forum: Absolute Beginners
03-29-2010, 03:02 PM
|
|
Replies: 3
Views: 894
if you are using the same file to process form...
if you are using the same file to process form data you have first to check if the form is being submitted:
if($_POST['submit'])
{
mysql_query("INSERT INTO customer (ic_no, name, address, tel_no,...
|