Jump to content

kripz

Members
  • Posts

    4
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

kripz's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Is it possible to create a directory with a max size?
  2. [code]           <? if ($_GET['msg']){       echo ?>       <td colspan="2" align="center" valign="top" class="style9"><strong>No user selected to delete ! </strong></td>       </tr>       <tr>       <? } ?>[/code] couldnt you use [code] <?php if ($_GET['msg']) { echo '<td colspan="2" align="center" valign="top" class="style9"><strong>No user selected to delete !</strong></td></tr><tr>'; } ?> [/code] or escape the "s
  3. Im trying to parse some html using php. It looks similar to this: [code]<td class="Advanced"><a href="http://www.myhost.com/advanced/1">Package 1</a> </td><td>335 Dollars</td>[/code] [code]<td class="Basic"><a href="http://www.myhost.com/basic/11">Package 11</a> </td><td>33 Dollars</td>[/code] [code]<td class="Basic"><a href="http://www.myhost.com/basic/11">Package 11</a> </td><td>33 Dollars</td><td class="Advanced"><a href="http://www.myhost.com/advanced/1">Package 1</a> </td><td>335 Dollars</td>[/code] I need to strip everything so it only displays: |Advanced Package|1|335| |Basic Package|11|33| |Basic Package|11|33|Advanced Package|1|335|
×
×
  • 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.