diffrent question for all member please answer me

Hello Members of PHPHeLP.com
My diffrent question for all member i hope give me answer

i am find Alfabet a to z in php page. Data in MSQL but i am find only a list in msql data record.

for example:

i am field many record in Table “movies” .
Movies names
"
The Dark Knight Rises
Lawless
Hit and Run
The Dark Knight Rises (1)
People Like Us
The Dark Knight Rises (2)
"
i am find Alfabet only “T”. The record only 3 in fields in table movies. how can possible this.

FOR EXAMPLE:
YOU see my web site
http://itpk.net.ms/forumdisplay.php?fid=5
i am find only " i " list how can possible and please all code send

Are you trying to do pagination or something? If all you’re looking for is a single character, then user preg_match_all() or preg_match(). You need to provide what you have so far, we’re not going to code it for you.

check this

http://itpk.net.ms/showthread.php?tid=11

when i am click A then show not A record first Alphabet record

i am using this code

	<?php

require(‘up1.php’);
require(‘config.php’);
require(‘pagen.php’);
$char = $_GET[‘char’];
$fid = $_GET[“fid”];

$sql = “Select * from forums where fid=’$fid’ & subject=’^$char’”;
$result = mysql_query($sql);
$myrow = mysql_fetch_array($result);
?>

<?php

try $sql = “Select * from forums where fid=’$fid’ & subject=’^$char’ ORDER BY subject”;

please send complete code

You can’t look at what you just posted and see what to replace?

Sponsor our Newsletter | Privacy Policy | Terms of Service