los atributos en html llevan comillas dobles por ejemplo:
MAL
Código HTML:
<table width=100% border=0 align=center cellpadding=1 cellspacing=1>
BIEN
Código HTML:
<table width="100%" border="0" align="center" cellpadding="1" cellspacing="1">
los tags de php se abren:
y si las variables las pasas por URL se recogen por:
Código PHP:
$variable = $_GET['variable'];
por POST se envian mediante formularios o por mediante ajax.