Thank You so much for responding Matt! You have no idea how many dead ends I been to in trying to resolve the problem. Here is the scoop now:
I had the file named "something.wml" but changed it to "something.php". I get an new error now. I am sorry, but for the life of me, I can't remember what it is. As for the space limitations ... I didn't know that there were any. What are they, and yes - I might quite possibly be exceeding the limitations. The purpose: I am trying to input food cost data from one page, and POST it to another ... then push that data into mysql.
Here is the calling page code (food.wml):
<?xml version="1.0"?>
<!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN"
"http://www.wapforum.org/DTD/wml_1.1.xml">
<wml>
<template>
<do type="accept" label="back">
<prev/>
</do>
</template>
<card id="card1" title="Food Page">
<do type="accept" label="Submit">
<go href="food.php" method="post">
<postfield name="id" value="$(ID)"/>
<postfield name="date" value="$(DATE)"/>
<postfield name="breakfast" value="$(BREAK)"/>
<postfield name="lunch" value="$(LUNCH)"/>
<postfield name="dinner" value="$(DINNER)"/>
<postfield name="other" value="$(OTHER)"/>
</go>
</do>
<p>
ID: <input name="ID" size="3" format="N"/><br/>
Date: <input name="DATE" size="10" format="N"/><br/>
Breakfast: <input name="BREAK" size="6" format="N"/><br/>
Lunch: <input name="LUNCH" size="6" format="N"/><br/>
Dinner: <input name="DINNER" size="6" format="N"/><br/>
Other: <input name="OTHER" size="6" format="N"/><br/>
</p>
</card>
</wml>
Here is the called page (test.php (was test.wml) ):
<?php
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\">\n");
/echo("<wml>\n");
echo("<card id=\"card1\" title=\"test\">\n");
echo("<p>"\n);
echo("This is a test\n");
echo($date);
echo("</p>\n");p
echo("</card>\n");
echo("</wml>\n")/
?>
<wml>
<card id="card1" title="test">
<p>
This is a test
<?php echo($date);?>
</p>
</card>
</wml>
Again, I thank you very much for looking at this. It has been really frustrating. I would have gotten to it sooner, but I couldn't access phpbuilder this afternoon.
Thanks!
Jess