ok ya tengo mi wen opnline instale appserv
cambvien el puerto y me quedo algo asi
http://o2allpro.servegame.com:81/registerpero detras de esta web ahi solo esto
<center><!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=utf-8" />
<title>Register O2allpro</title>
<style type="text/css">
<!--
body,td,th {
color: #09C;
}
body {
background-color: #000;
background-image: url(112_worldch.jpg);
background-repeat: no-repeat;
background-position : center;
}
-->
</style></head>
<body>
<p> </p>
<p> </p>
<p align="center"> </p>
<p align="center"> </p>
<p> </p>
<p> </p>
<table width="307" border="10" align="center">
<caption>
<em><strong>Register O2allpro </strong></em><br>
<FORM ACTION="member" METHOD="POST">
</caption>
<tr>
<td width="90"> Username:</td>
<td width="200"> <INPUT TYPE="text" NAME="nick" SIZE=20 MAXLENGTH=26></td>
</tr>
<tr>
<td>Password</td>
<td> <INPUT TYPE="text" NAME="nick" SIZE=20 MAXLENGTH=20></td>
</tr>
<tr>
<td>Confirm Pass</td>
<td> <INPUT TYPE="text" NAME="nick" SIZE=20 MAXLENGTH=20></td>
</tr>
<tr>
<td>Nickname</td>
<td> <INPUT TYPE="text" NAME="nick" SIZE=20 MAXLENGTH=20></td>
</tr>
<tr>
<td>Sex</td>
<td> <SELECT NAME="Sex" SIZE=1 ">
<OPTION VALUE="link pagina 1">Male</OPTION>
<OPTION VALUE="link pagina 2">Female</OPTION>
</SELECT></td>
</tr>
<tr>
<td>E-mail</td>
<td> <INPUT TYPE="text" NAME="nick" SIZE=20 MAXLENGTH=20></td>
</tr>
</table>
<br><br><br>
<INPUT TYPE="submit" NAME="Envia" VALUE="Send">
<INPUT TYPE="reset" VALUE="Delete">
</body>
</html></center></form>
esa eria mi web hasta ahora, busque el google, ahi varias formas pero como dije en un principio son novato en esto y no se como deberia quedar correctamente
estos son los codigos que encontre
muestra 1
$conectID = mssql_connect("NombreServidor","SA","");
mssql_select_db("Northwind");
$result=mssql_query("select * from products",$numero );
while ($row=mssql_fetch_array($result)) {
$counter++; $c1=$row["ProductName"];
$c2=$row["UnitPrice"];
echo ("$counter c1: $c1 c2: $c2\n");
}
mssql_close($conectID);
muestra 2
<?php
$myServer = "localhost";
$myUser = "sa";
$myPass = "password";
$myDB = "Northwind";
$s = @mssql_connect($myServer, $myUser, $myPass)
or die("Couldn't connect to SQL Server on $myServer");
$d = @mssql_select_db($myDB, $s)
or die("Couldn't open database $myDB");
$query = "SELECT TitleOfCourtesy+' '+FirstName+' '+LastName AS Employee ";
$query .= "FROM Employees ";
$query .= "WHERE Country='USA' AND Left(HomePhone, 5) = '(206)'";
$result = mssql_query($query);
$numRows = mssql_num_rows($result);
echo "<h1>" . $numRows . " Row" . ($numRows == 1 ? "" : "s") . " Returned </h1>";
while($row = mssql_fetch_array($result))
{
echo "<li>" . $row["Employee"] . "</li>";
}
?>
primero no se si sean los correctos y segundo nose como van acomodados
perdonen por ser tan pregunton y alomejor un poco molesto
pero creo yo que el que pregunta no es el que no sabe, sino el que quiere aprender
Gracias ^^