Jump to content

iamq08

New Members
  • Posts

    3
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

iamq08's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. i'm looking to be able to have users upload images on my website, but only images. I poked around a little bit and it seems that imagemagick and/or GD is the way to do this, but i'm not familiar with either, does anyone know: A.)Which method they would recommend B.) Where I can find a solid tutorial or documentation on how to accomplish this Thanks in advance -Iain
  2. I'm trying to pull and populate the page with all of the entries, which is the reason for no where specification.  I don't think the problem is with the function, because I can print values, I think there may be somethin wrong with the foreach statement or below that.
  3. I'm trying to populate a form in a menu for my website, and for some reason it won't pull the information from the database correctly. Any assistance would be real helpful. here's the function from the include file [code]  function get_extensions(){                 $q = mysql_query("select name, context, mailbox, secret from extensions");                 while($info = mysql_fetch_array($q)){                 return $info;                 }         }[/code] Heres the excerpt from the php file [code] $vars = New Casename; $vars->mysqldbcon(); $extens = $vars->get_extensions(); .............. ................ <?                 foreach($extens as $val){         ?> <form action="user.php" method="POST">                 <tr bgcolor="#E7F3FB">                       <td nowrap valign=top><input name="name" value="<?=$val['name']?>"></td>                       <td nowrap valign=top><input type="text" maxlength="150" name="context" value="<?=$val['context']?>"></td>                       <td nowrap valign=top><input type="text" maxlength="150" name="mailbox" value="<?=$val['mailbox']?>"></td>                       <td nowrap valign=top><input type="text" maxlength="150" name="secret" value="<?=$val['secret']?>"></td>                           <td nowrap valign=top><input type="Submit" name="action" value="Update"></td>                       <td nowrap valign=top><input type="Submit" value="Remove" name="action"></td>                 </tr> </form> <?}?>[/code] For some reason it doesn't pull the information correctly.
×
×
  • 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.