View: 2661|Reply: 4
|
Video Tutorial PHP/MySQL
[Copy link]
|
|
Video ini ditujukan kepada sesiapa yang ingin membuat masukkandata,delete data,delete multiple data,edit menggunakan PHP dan MySQL
Asasyang perlu ada cuma HTML dan pemahaman PHP di tahap paling basic. Amatsesuai untuk designer yang ingin membuat kod PHP sendiri.
mengapa perlu ada asas HTML, sebab HTML adalah bahasa paling asas nak buat Web Programming
Sila ikut tutorial di http://php-video.blogspot.com
Jika ada komen, sila komen di sana atau di forum ini. |
|
|
|
|
|
|
|
Reply #1 bmw_e34's post
nice job dude..
semoga Tuhan memberkati kamu.
kat hosting mane ko upload tutorial ni |
|
|
|
|
|
|
|
tengkiu...banyak pahala ko dapat nih |
|
|
|
|
|
|
|
otai2 php sekalian... diharap dpt membantu...
ni ialah coding aku....
<?php
if($error != null):
?>
<h1><font color="red">ERROR!</font></h1>
<?
endif;
?>
<b><font color="blue">COMPANY PROFILE</font></b>
<form action="proses.php" method="post">
<br>
<table width ="500" border ="1">
<tr>
<td><label name="nama">Company ID :</label></td>
<td><input type="text" name="comp_id" size="55" value="<?php echo
$_POST['comp_id'] ?>"><br>
<i><font color="red"><?php echo $error['comp_id'] ?></font></i></td>
</tr>
<tr>
<td><label name="nama">Company Name :</label></td>
<td><input type="text" name="comp_name" size="55" value="<?php echo
$_POST['comp_name'] ?>"><br>
<i><font color="red"><?php echo $error['comp_name']
?></font></i></td>
</tr>
<tr>
<td><label name="nama">Address :</label></td>
<td><input type="text" name="comp_address" size="55" value="<?php
echo $_POST['comp_address'] ?>" ><br>
<i><font color="red"><?php echo $error['comp_address']
?></font></i></td>
</tr>
<tr>
<td><label name="nama">Phone No:</label></td>
<td><input type="text" name="phone_no" size="55" value="<?php echo
$_POST['phone_no'] ?>" ><br>
<i><font color="red"><?php echo $error['phone_no']
?></font></i></td>
</tr>
<tr>
<td><label name="nama">Fax No :</label></td>
<td><input type="text" name="fax_no" size="55" value="<?php echo
$_POST['fax_no'] ?>" ><br>
<i><font color="red"><?php echo $error['fax_no'] ?></font></i></td>
</tr>
<tr>
<td><label name="nama">Contact Person :</label></td>
<td><input type="text" name="contact_person" size="55" value="<?php
echo $_POST['contact_person'] ?>" ><br>
<i><font color="red"><?php echo $error['contact_person']
?></font></i></td>
</tr>
</table>
<br>
<a href="addhardware_form.php?comp_id=<?php echo $comp_id ?>">ADD HARDWARE</a> <--------- betol ke ni????
<br><input type="submit" value="SUBMIT" size="20">
</form>
<br><hr>
<a href ="home.php">Back</a>
ni plak form add hardware aku...
|
|
|
|
|
|
|
| |
|