Help please !!!

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Locked
silgol
Forum Newbie
Posts: 11
Joined: Fri Jan 24, 2003 1:31 pm

Help please !!!

Post by silgol »

I want that in following script when digitar in the field of the
corresponding mail, automaticamente it opens outlook to send a mail to
him to that personnel.


<HEAD>
<TITLE>leer.php</TITLE>
<Link rel= "stylesheet" href="default.css">
</HEAD>
<BODY>
<h1><div align="center">Phones</div></h1>
<br>
<br>
<?
echo "<form name='listado' method=post action='personal2.php'>";
mysql_connect("localhost","fime","itg01");
$result=mysql_db_query("auth","select * from Personal order by nombre");
$number = MySQL_NUM_ROWS($result);
echo"<table width=500 align=center bgcolor = cccccc border=9 cellpadding=7 cellspacing=7>
<tr>
<td><br><input type=submit value=&laquo;><input type=submit value=&raquo;>
<b>Nombre</td></b>
<td><br> <input type=submit value=&laquo;><input type=submit name=Inter value=&raquo;>
<b>Interno</b><td><br><b>mail</b></td>
</tr>";
while($row=mysql_fetch_row($result)){
echo"<tr>
<td>$row[1]</td><td>$row[4]</td>
<td>$row[5]</td>
</tr>";
}
echo"</table>";
?>


Since I do so that the data order according to the field that
I select, or internal name or?
User avatar
twigletmac
Her Royal Site Adminness
Posts: 5371
Joined: Tue Apr 23, 2002 2:21 am
Location: Essex, UK

Post by twigletmac »

Please don't repost questions that you have already asked - keep everything in one thread and if you need more help, or clarification of the help you've already been offered, ask for it there.

Those wishing to help please go here:
viewtopic.php?p=31745&highlight=#31745

Mac
Locked