Ask a Question related to Dreamweaver AppDev, Design and Development.
-
eddo32 #1
using php to show particular part of page
I have a particular section of a page that I need to display if the variable
being passed is a certain name. The the particular block of code that needs to
be shown is attached below. My variable called $values is the variable that
gets the passed style name. Any help would be appreciated
<tr>
<td class="description">Available Colors</td>
</tr>
<tr>
<td align="left"><img src="<?php echo $row_colorsPic['path']; ?>" /></td>
</tr>
eddo32 Guest
-
Can't edit part of page
I've set up an asp page in Dreamweaver that pulls in results from a database. My client needs to edit the right hand side of this page, but can't... -
bitmap inside canvas, do not show outside part
Hi, I have a canvas object in my app: <mx:Canvas id="canvas".../> Then in my actionsript, I use the following code to show a bitmap: var... -
only show part of a dynamic text field
ok i have this description field put in dynamically on my site but i only wnat the first 120 chars to show and thne ill put a link saying click here... -
How to show added on visible part of data grid.
hi, I met a problem. There is a data grid, I can add new item on it. At beginning, there are little items on data grid, so you can see all of... -
how to show part of a field?
I have a web page with messages. I want to show the list of the messages only with part of them, for example the first 30 letters/characters. Now... -
gareth #2
Re: using php to show particular part of page
<?php if($values == "value"){ ?>
<tr>
<td class="description">Available Colors</td>
</tr>
<tr>
<td align="left"><img src="<?php echo $row_colorsPic['path']; ?>"
/></td>
</tr>
<?php } ?>
Where == is 2 equal signs
--
Gareth - TMM Dreamweaver
[url]http://www.dreamweavermxsupport.com/[/url]
[url]http://www.garethdp.com/[/url]
PHP Login Suite V2 - 34 Server Behaviors to build a complete Login system.
[url]http://www.phploginsuite.co.uk/[/url]
Co-Author: Dreamweaver MX: Instant Troubleshooter - Apress
Co-Author: Practical Intranet Development - Apress
Co-Author: Dreamweaver MX: Advanced PHP Web Development - Apress
Co-Author: Dreamweaver MX: PHP Web Development - Wrox
gareth Guest



Reply With Quote

