Jump to content

what is the correct syntax to use here?


Ansel_Tk1

Recommended Posts

Hi all - wondering if some kind soul out there could point me in the right direction.

I have created a repeating table that looks like this:

<body>
<form name="form1" method="post" action="">
<?php do { ?>
<table width="716" border="1">
<tr>
<td width="275"><?php echo $row_UploadInfos['id']; ?></td>
<td width="210"><?php echo $row_UploadInfos['value']; ?></td>
<td width="209">&nbsp;</td>
</tr>
</table>
<?php } while ($row_files = mysql_fetch_assoc($files)); ?></form>
</body>
</html>
<?php
mysql_free_result($files);

mysql_free_result($UploadInfos);
?>


my question is how would i go about changing the php echo $row_UploadInfos['value']; ?> to display only those records that contain certain text values?

Thanks! I'd appreciate any points.
Link to comment
Share on other sites

Guest footballkid4
If you are looking for something complex:
[code]<?php
if ( preg_match( "#" . $regex . "#is" , $var ) )
{
     echo $var;
}
?>[/code]
Otherwise take a look at substr(), strstr(), stristr(), etc.
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.