Search found 5 matches

by Dilnesaw
Mon May 25, 2009 9:11 pm
Forum: PHP - Code
Topic: Display php varibales in two columns
Replies: 1
Views: 144

Display php varibales in two columns

Greetings, I want to display two derived PHP variables in two columns or in a table. Here is my code:   <?php    $link = **** while($info = mysql_fetch_array( $data1)) { $One .= $info['Name'] . "<br>"; $One .= $info['Video'] . "<br>"; $One .= $info['Title'] . "<br>"; } ...
by Dilnesaw
Mon May 18, 2009 10:45 pm
Forum: PHP - Code
Topic: Display two pages side by side in PHP
Replies: 5
Views: 185

Re: Display two pages side by side in PHP

What is inside of PcitureList.php? If you want to do it properly you should do so with either TABLES or DIVs If you can post the content of PcitureList.php I can probably show you have to do it with either. Thanks for the reply. In the PcitureList.php, page there will be similar pictures (more than...
by Dilnesaw
Sat May 16, 2009 2:22 pm
Forum: PHP - Code
Topic: Display two pages side by side in PHP
Replies: 5
Views: 185

Display two pages side by side in PHP

Greetings, I am new to PHP programming. I want to show two pages side by side on one php page. I have a picture that is retrieved from mysql database and shown on my page. At the same time, I want to show another page containing list of picture next to this picture on the same page. I tried to use i...
by Dilnesaw
Mon Apr 13, 2009 8:19 pm
Forum: PHP - Code
Topic: Displaying two variables nested under each other
Replies: 1
Views: 442

Re: Displaying two variables nested under each other

McInfo,

Million thanks. I was really impressed by the step-by-step instruction you provided. I appreciate. I am going to try with mysql database.
by Dilnesaw
Fri Apr 10, 2009 9:24 pm
Forum: PHP - Code
Topic: Displaying two variables nested under each other
Replies: 1
Views: 442

Displaying two variables nested under each other

Greetings, It is my first time to post here. I have a PHP syntax that prints data from mysql database. In this case, it summarizes Gender (F, M, total) as count and percentage distribution. Now I want to crosstab Gender with ethnicity. I want to group gender under "Ethnicity". To display G...