Jump to content

thenk83

Members
  • Posts

    7
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

thenk83's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. I'm looking to have a page for my intranet site that will allow me to see the status of certain services on the machine that intranet page resides on. Basically Id like to check that status of the follwing services: MySQL, SQL, IIS, etc. Is there a way this can be done in PHP? If there is can somone lead me to the right functions and usage? Thanks.
  2. A friend of mine is getting married. He wants a page that will keep track of invitations for his wedding. Whos coming, who wants to come etc. Now the twist of it is, he wants to be able to click a link and have all the contacts export in Outlook csv format. Then from Word import those contacts via an envelope macro. So my question is... can anyone recommend a template for Outlook CSV formating? Or maybe even have a simple tutorial on exporting data to file and formatting to format standard?
  3. This is what I have goin on. This code outputs a 1. Basically all I'm trying to do is add a Copyright sentence to images. All it seems to do is overwrite the image, but adds no text. I've gotten eveything else with ImageMagick working but this. Any ideas or words of wisdom. I'm terribly stumped. [code] exec ('$magic/convert -font arial -fill white -pointsize 10 -gravity southeast -draw 'text 10,10 \"Copyright Mike Dantignac Photography\"' $full_path/$file $full_path/$file', $array, $status); [/code]
  4. [!--quoteo(post=370694:date=May 2 2006, 01:32 PM:name=Crashdowngurl)--][div class=\'quotetop\']QUOTE(Crashdowngurl @ May 2 2006, 01:32 PM) [snapback]370694[/snapback][/div][div class=\'quotemain\'][!--quotec--] I removed it and the page displays no errors. Any other thoughts? [/quote] under [code]$result = mysql_query($query);[/code] Try [code]if(!$result){ echo mysql_error(); }[/code] That should give u a message. Hopefully!
  5. [code] $query        =    "SELECT * FROM portfolio WHERE id=".$id; [/code] i think should be [code] $query        =    "SELECT * FROM portfolio WHERE id='$id'"; [/code] Try that out see how it works.
  6. Do I need to give more detail to get help with this?
  7. I'm trying to make thumbnails executing with exec and imagemagick. But it doesn't seem to be working. I would like to see whats failing so I could fix it. I know with I believe system() it gave me an Error 127. But it doesn't tell me much. Any ideas on how I can show errors/output for exec()? (I have not masted GD yet, so I'm stuck using imagemagick.)
×
×
  • 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.