Forum: PHP May 17th, 2008 |
| Replies: 10 Views: 1,022 |
Forum: PHP May 17th, 2008 |
| Replies: 10 Views: 1,022 :D i just noticed the limit 1 in original code. remove this and test original code or try one below.
<div id="news">
<div class="asnazzy">
<b class="atop"><b class="ab1"></b><b class="ab2... |
Forum: PHP May 17th, 2008 |
| Replies: 10 Views: 1,106 when i try it i get
ASAD
ASAD
ASAD
AsAD
Asad
Asad
asad
asad |
Forum: PHP May 17th, 2008 |
| Replies: 10 Views: 1,106 SELECT * FROM table_name ORDER BY column_name, BINARY column_name ASC |
Forum: PHP May 17th, 2008 |
| Replies: 10 Views: 1,106 try
SELECT * FROM table_name ORDER BY BINARY column_name ASC |
Forum: PHP May 17th, 2008 |
| Replies: 10 Views: 1,106 http://bugs.mysql.com/bug.php?id=30675
http://bugs.mysql.com/bug.php?id=29977 |
Forum: PHP May 17th, 2008 |
| Replies: 10 Views: 1,106 just a guess check for extra spaces |
Forum: PHP May 17th, 2008 |
| Replies: 10 Views: 1,022 your output result has to be in side the query loop. if outside only one result is done.
<div id="news">
<div class="asnazzy">
<b class="atop"><b class="ab1"></b><b class="ab2 color_c"></b><b... |
Forum: PHP May 17th, 2008 |
| Replies: 3 Views: 622 the $info['$big_image'] is not from db it is a set varible so it should be echo $big_image and same with $info['ref'] - echo $ref;
the image and ref should go below db query to get info also
... |
Forum: PHP May 17th, 2008 |
| Replies: 3 Views: 622 merge thumb and url into image - colunm just contains name e.g 1.jpg
your ref seems to be primary key and date. if true, get rid of ref.
// images... |
Forum: PHP May 16th, 2008 |
| Replies: 2 Views: 440 <?php
$age = 21;
if ($age >61)
{
$age_score = '0.5'; |
Forum: PHP May 11th, 2008 |
| Replies: 3 Views: 1,030 look for post_max_size
<?php echo phpinfo(); ?> |
Forum: PHP May 11th, 2008 |
| Replies: 3 Views: 1,030 well depends on your max post memory. i think default is 8mb, which is for more than enought for your data needs. |
Forum: PHP May 6th, 2008 |
| Replies: 3 Views: 823 guessing this is wat you mean. fill in missing names.
echo "<table cellpadding=10 border=0>
<tr><td>first name</td><td>last name</td><td>a</td><td>b</td><td>c</td><td></td><td>d</td>";
... |
Forum: PHP May 2nd, 2008 |
| Replies: 3 Views: 569 well i have not reviewed all your code but wat stood out was first bit in php.
when you set $firstField = $_POST['first'];
this should not be
First Name: $first
it should be
First Name:... |