amolbagde 0 Newbie Poster

I had used curl, but i am directly interacting with Gmail, Yahoo, Rediff and Hotmail server. Not using any other website information which gives this information.

--Amol
<FAKE SIGNATURE>

I think you have to use curl lib and benefit from many URL services that YAHOO, MSN and GOOGLE offer and one of them is getting the address book.

amolbagde 0 Newbie Poster

the url which is getting created is wrong. THere is an extra quote in url.

echo "<td>" . "<a href=\"edit_update.php?id=\" " . $row . ">Edit/Update</a>" . "</td>";

Make it

echo "<td>" . "<a href=\"edit_update.php?id= " . $row . ">Edit/Update</a>" . "</td>";

It will work.

--Amol
<FAKE SIGNATURE>

I could not figure out how to pass data to next page. Here is my code. I hope someone who can help me with it. I am trying tp pass id=$_get. Can someone look at the code and tell me what I do wrong. I am kind of new on this.

member.php
<HTML>
<HEAD>
<TITLE> Member List </TITLE>

</HEAD>
<BODY>
<FORM>

<?php
include ('dbc.php');
if ($db) {
//$SQL = "SELECT * FROM member";

$result = mysql_query("SELECT * FROM member");

echo "<table border='1'>
<tr>
<th>ID</th>
<th>First Name</th>
<th>Maiden Name</th>
<th>Last Name</th>
<th>Month (start)</th>
<th>Year (start)</th>
<th>Month (end)</th>
<th>Year (end)</th>
<th>Edit/Update</th>
</tr>

";

while($row = mysql_fetch_array($result))
{

echo "<tr>";
echo "<td>" . $row . "&nbsp;</td>";
echo "<td>" . $row . "&nbsp;</td>";
echo "<td>" . $row . "&nbsp;</td>";
echo "<td>" . $row . "&nbsp;</td>";
echo "<td>" . $row . "&nbsp;</td>";
echo "<td>" . $row . "&nbsp;</td>";
echo "<td>" . $row . "&nbsp;</td>";
echo "<td>" . $row . "&nbsp;</td>";

echo "<td>" . "<a href=\"edit_update.php?id=\" " . $row . ">Edit/Update</a>" . "</td>";

}