Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

~11.4K People Reached
About Me

friendly..
:)

Favorite Forums
Favorite Tags
Member Avatar for ayuscomeyh

how to pass the value 'id_category' from this page list.php [code] <title>home</title> <!--for auto refresh--> <META HTTP-EQUIV=Refresh CONTENT="300; URL=http://localhost/recipe2/home.php"> <body> <div align="left"><img src="Cookie Banner edited.jpg" width="1100" height="200" /></div> <h2>My Account </h2> <p>chef today : <?php echo $_SESSION['myusername']; ?> | <a href="logout.php">Logout</a> </p> <p>&nbsp;</p> <p>&nbsp;</p> <?php include 'recipe2db.php'; $sql="SELECT id_category FROM …

0
59
Member Avatar for ayuscomeyh

after login, go to this page. client will click those button then view each recipe they click. list.php [code] <?php session_start(); if(!isset($_SESSION['myusername'])&&!isset($_SESSION['mypassword'])) { header('Location:401.php'); } ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <!--for auto refresh--> <META HTTP-EQUIV=Refresh CONTENT="300; URL=http://localhost/recipe2/home.php"> <title>home</title> </head> <body> <div align="left"><img src="Cookie …

Member Avatar for CFROG
0
11K
Member Avatar for ayuscomeyh

update.php [code] <?php include 'recipe2db.php'; // get value of id that sent from address bar $id=$_GET['id']; // Retrieve data from database $sql="SELECT * FROM recipe WHERE id='$id'"; $result=mysql_query($sql); $rows=mysql_fetch_array ($result); ?> <form name="form1" method="post" action="update_ac.php"> <table border="1" cellspacing="0" cellpadding="3"> <thead> <th>name</th> <th>ingredient</th> <th>how to cook</th> <th>category</th> </thead> <tr> <td> <input …

Member Avatar for arajapandi
0
113
Member Avatar for ayuscomeyh

i delete a row of data from this [code] ........ <a href="delete.php?id=<? echo $rows['id']; ?>">delete</a> [/code] delete.php [code] <html> <body> <?php include 'recipe2db.php'; // get value of id that sent from address bar $id=$_POST['id']; // Delete data in mysql from row that has this id $sql="delete from recipe where `id` …

Member Avatar for pritaeas
0
56
Member Avatar for ayuscomeyh

add.php [code] <?php include 'recipe2db.php' ?> <div align="left"><img src="Cookie Banner edited.jpg" width="1100" height="200" /> <form name="form7" method="post" action="add_process.php"> &nbsp;</p> <p>&nbsp;</p> <table align="center" border="3" cellpadding="2" cellspacing="2"> <tr> <td>catagory :</td> <td> <?php include 'recipe2db.php'; $query="SELECT id_category, category_name FROM category"; $result = mysql_query ($query); echo "<select name=category value=''></option>"; // printing the list box …

Member Avatar for itisnot_me
0
92
Member Avatar for ayuscomeyh

how to create an application for client and server through any port available using Red Hat Linux.. give some link to refer...

Member Avatar for icyshout
0
104
Member Avatar for ayuscomeyh

we need to link this interface to database.. but i fail to connect this.. [code]<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Untitled Document</title> </head> <body> <form id="form1" name="form1" method="post" action=""> <p><img src="header2.jpg" alt="header" width="800" height="100" /></p> <blockquote> <p align="left"><strong>Friends</strong>List</p> <p> <textarea …

Member Avatar for Designer_101
0
152