simple mysql while

mysql, php No Comments »
<?
 $query = mysql_query("SELECT name FROM Table");
 while ($item = mysql_fetch_object($query)) {
    echo $item->name;
    echo "<br>";
 }
?>

utf-8

mysql, php No Comments »
<?
  header('Content-Type: text/html; charset=utf-8');
?>

<?
 mysql_select_db("DataBase");
 mysql_query("SET NAMES UTF8");
?>

simple session()

php No Comments »
<?
session_start();

if($_GET['sample']){ $_SESSION['sample'] = $_GET['sample']; }
if(!$_SESSION['sample']){ $_SESSION['sample'] = 'default'; }
?>

header

php No Comments »

http://www.php.net/manual/en/function.header.php

<?
 header('Location: http://www.example.com/');
?>
WP Theme & Icons by N.Design Studio
Entries RSS Comments RSS Log in