Can view this in Opera but not in my wapphone.
The page put the info in the database but show in the wapphone:
"unexpected character data(before or at line 4)"
In the browser OPERA its working .
Please help me with this, im learning but it takes some time.....
here is the code:
<?
header("Content-type: text/vnd.wap.wml");
echo "<?xml version=\"1.0\"?>\n";
echo "<!DOCTYPE wml PUBLIC \"-//WAPFORUM//DTD WML 1.1//EN\""." \"http://www.wapforum.org/DTD/wml_1.1.xml\">";
print "<wml>\n";
print "<card id=\"result\" title=\"Result\" newcontext=\"true\">\n";
$db = mysql_connect("localhost", "myggans", "123456");
mysql_select_db("myggans_3",$db);
$the_date = date("Y-m-d H:i:s");
$sql="INSERT INTO news_data VALUES('','en','$the_date','$text','$heading','Myggan mobil','','0','1','','1')";
$result=mysql_query($sql,$db);
if ((isset($heading)) AND (isset($text))) {
echo "Done!<br/>";
echo "Details:<br/>";
echo "Header: $heading<br/>text: $text";
}
print "</card>\n";
print "</wml>";
?>