Showing posts with label PHP. Show all posts
Showing posts with label PHP. Show all posts

Script Untuk Pemprosesan Registrasi User Pada PHP

submit.php 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 <?php $username   = $_POST [ 'usern...

Membuat Form Pendaftaran User Pada PHP

register.php 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 <form method="post" action="submit.php">  ...

PHP Tutorial - Security 2

Take this standard file upload form:      <FORM ENCTYPE="multipart/form-data" ACTION="upload.php" METHOD=POST>  ...

PHP Tutorial - Security

Many users place code in multiple files and include these files:      <?php      require 'functions.inc';      ?> Or perha...

PHP Tutorial - Inserting Data

INSERT Query      <?php      function add_user($id, $pass, $name, $email) {      $result=mysql_query("insert into users values  ...

PHP Tutorial - Creating a Database

Create a DB      <?      mysql_connect('localhost');      if(mysql_query("CREATE DATABASE foo")) {      echo "...

PHP Tutorial - Persistent Connections

The simple connection      <?      $conn = mysql_pconnect('localhost');      echo $conn;      ?> Output:      Resource ...

PHP Tutorial - Connecting to MySQL

The simple connection <? $conn = mysql_connect('localhost'); echo $conn; ?> Output : Resource id #28 Other variatio...

PHP Tutorial - Sanity Check

Make sure MySQL is running prompt:~> mysqlshow +-----------+  | Databases | +-----------+  | mysql        |  | test           | +...

PHP Tutorial - Setup

Check your PHP Setup for MySQL support <? phpinfo() ?> If not enabled Very rare since a MySQL client library is distributed with PH...
 

©Copyright 2011 download on damnconcept | TNB