Forum: PHP 22 Days Ago |
| Replies: 2 Views: 344 Shishtawitch,
The code looks like it should work, however. two things .....
1. At the line $id_2 = $g["id"];, surely $id_2 must be equal to $id because it comes from a row resulting from a... |
Forum: PHP 26 Days Ago |
| Replies: 8 Views: 374 Whitestream6,
Do you mean that you want to build an HTML table, storing chunks in a php array as you go?
If so, then consider this pseudo code:
var htmlTable = array();//initialise array... |
Forum: PHP 32 Days Ago |
| Replies: 4 Views: 314 Lifeworks,
Wow!! So the blind CAN lead the blind!!
Well done indeed.
Airshow |
Forum: PHP Oct 25th, 2009 |
| Replies: 8 Views: 432 Tatt,
for ($i=1;$i<=$num;$i++){
echo "<form>";
echo "<label for=\"words$i\">Word $i</label><input type=\"text\" name=\"words[$i]\" id=\"words$i\" /><br />";
}
echo "</form>";
<form> is... |
Forum: PHP Jul 10th, 2009 |
| Replies: 4 Views: 930 Whiteyoh,
I agree with Pritaeas.
You can test the theory by inserting after $myrow = mysql_fetch_array($result);
if(!$myrow){
$myrow = array(
'Title' => 'testTitle',
'Subtitle' =>... |
Forum: PHP May 14th, 2009 |
| Replies: 10 Views: 976 If I understand correctly, the solution lies in your Apache configuration. I had the same problem until I learned how to set up virtual hosts (and then how to compose urls in the corresponding... |
Forum: PHP Apr 27th, 2009 |
| Replies: 3 Views: 834 Danishbacker,
Before you do anything else, research "GEDCOM" a well supported genealogical/family tree data storage/transmission format. As I understand it, t's pretty well the international... |