Jump to content

Makeshift67

Members
  • Posts

    24
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

Makeshift67's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. oh, i was trying to skip to find what i was looking for. lol..
  2. thorpe, thank you for the link, but I couldn't make heads or tales around that site.. mellis, thank you for that, I will definitely look into it, but I found exactly what i was looking for more or less. http://css-tricks.com/php-for-beginners-building-your-first-simple-cms/
  3. On my website, i currently use php to write comments to a file, and use include to apply them to the comment page.. my friend told me it would be a lot smarter to do it though a database, but I have no idea how to do it/where to start. If someone could help me out/give me a site that can walk me through or has a downloadable script i can use.. the code would need to be able to make each table after the user posts the comment, and i want the comments to display newest to oldest.. thanks.
  4. or, if you dont want all bold elements that color you can set a class for it.. <!-- HTML --> <b class="var">$variable</b> //CSS b.var { color: #FF7113; }
  5. if worst comes to worst, you can set each background element separate body { background-image: url(../images/sample.jpg); background-repeat: repeat-x; background-color: #005367; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; }
  6. i would guess you can do something like take the border and background color out of the input, and make a background image for it. for the submit button, you might be a little limited with the up/over/down changes. <input type="image" src="image.jpg" />
  7. well, I don't want the outcome to be something like 'watermark.php?image=image001.jpg.' I already have this, I don't want it. I want the upload the image, then it merges my premade watermark and my image into the lower left corner.
  8. Hey guys, I've been searching for a while for a php script that will watermark my image when i upload it through a form on my site; so the actual picture may have the actual watermark on it. Is there a way I can do this? thanks. ---------------- Now playing: The Misfits - Astro Zombies via FoxyTunes
  9. im new at PHP, and i wanted to make some things a little easier. i have a page of my Recent photoshop/photography work which is minimized. when clicked i want to to go to a page like, http://mypage.com/recent.php?image=image.jpg how can i make it so when they click the image to enlarge it, the image.jpg becomes the certain image that they click appears. i will also need the code that makes the certain image.jpg will be in the img tag on the page.
  10. well, i put the code on there to help people trying to help me by giving them an idea of what i have set up. i summed up the code on there. on the actual coding, the text in the textarea has the face of my fonts, which i dont wanna do anymore. i wanna change the actual letters, not the way they look.
  11. hey guys. i have recently made a few coded fonts to secure my information on my website. i recently tried making a page where i type in a sentence or word, and it posts that sentence into 3 other textarea fields using my coded font, but i only want it to pretty much scramble the letters. one of my coded fonts uses a=z b=y c=x etc. I've been trying to use $arr to make this possible. i tried to do "echo $arr[$text'];" but it didn't work. here's my code. <?php $text = $_REQUEST['text']; $arr = array("a" => "z", "b" => "y", "c" => "x"); ?> <form method="POST" action="<?php echo $SERVER['PHP_SELF']; ?>"> <table align="center" border="0" style="color:#000;"> <tr valign="top"> <td> <textarea name="text" rows="5" cols="30"></textarea><br /> <input type="submit" value="Submit" name="submit"> | <input type="reset" value="Reset" /> </td> </tr> </table> </form> <br /><br /> <table align="center"> <tr valign="top"> <td align="center"> <textarea name="text" rows="5" cols="30"><?php echo stripslashes($text); ?></textarea></form> </td> <td align="center"> <textarea name="text" rows="5" cols="30"><?php echo stripslashes($text); ?></textarea></form> </td> <td align="center"> <textarea name="text" rows="5" cols="30"><?php echo stripslashes($text); ?></textarea></form> </td> <td align="center"> <textarea name="text" rows="5" cols="30"><?php echo stripslashes($text); ?></textarea></form> </td> </tr> </table>
  12. okay, that helped a lot. thanks.
×
×
  • 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.