-
Content Count
107 -
Joined
-
Last visited
Community Reputation
2 NeutralAbout kanchatchai
-
Rank
Member
- Birthday 07/02/1979
Previous Fields
-
Languages
Thai
Profile Information
-
Location
Thailand
-
use$_POST['age'] mysqli_query($con,"UPDATE Persons SET Age=".$_POST['age']." WHERE FirstName='Peter' AND LastName='Griffin'");
-
I Nerver seen Flash Communication Server can do.
-
thanks for advice boen_robot
-
May be use readfile and explode.
-
HAPPY NEW YEAR GIRL tableid, title, subject 1. show id as linkHere how to with databasehttp://www.w3schools...ysql_select.asp in file menu.phpwho link by code... echo '<a href="page.php?id='. $row['id'] .'">'.$row['title'].'</a>'; 2. after clicked php will accept with GEThttp://www.w3schools...php/php_get.asp in file page.php sql string...'select * from your_table_name where id='.$_GET['id'] and show record... echo '<p>'.$row['title'].'<br/>'; echo '<p>'.$row['subject'].'<br/>';
-
you forgot to register$_SESSION['username']
-
https://code.google.com/a/apache-extras.org/p/phpmailer/
-
may be$_SESSION['user_id'] not set
-
<?PHP@session_start();//This function will find and checks if your data is correct//Collect your info from login form if (isset($_REQUEST['logout']))unset($_SESSION["username"]);//Show Logout Buttonif (isset($_SESSION["username"]))echo '<form method="post" name="logoutform" action=""> Username: '.$_SESSION["username"].' <input value="logout" name="logout" type="submit"><br></form>';//Show Login Formelseif (!(isset($_POST['username'])&&isset($_POST['password']))){echo '<b>Login Form</b><br/><form method="post" name="loginform" action=""&g
-
Idiacreate table_visitor[visit_id] [visit_url] [visit_time] [visit_ip] create visitor file (sample insert_visitor.php) have code to insert value to table_visitor in states.php,Cities.php,Category.php,New_topic_title.php,Topic_description.phpinclude file insert_visitor.php finalyuse code to show cont and group (checkvisitor.php) SELECT Count(table_visitor.visit_id) AS CountOfvisit_id, table_visitor.visit_urlFROM table_visitorGROUP BY table_visitor.visit_url to output echo CountOfvisit_idandecho visit_url
-
http://php.net/manual/en/function.number-format.php
-
i mean you can see variable in addressbar after change post to getlike thishttp://ie.microsoft.com/testdrive/ieblog/2008/Sep/09_TheIE8SmartAddressBarPart1NavigateEasierandFaster_2.pngand after you see variable change to Post again.
-
change <form action="register_form.php" method="post"> to <form action="register_form.php" method="GET"> and get variable you need in address bar after complete change it back
-
in thailand i use PHP <?PHP header('Content-Type: text/html; charset=Windows-874'); ?> and HTML <meta http-equiv="Content-Type" content="text/html; charset=Windows-874"> to show header for thai language and use mysql_query("SET NAMES tis620"); to get thai charactor from mysql