Jump to content
xisto Community

karlo

Members
  • Content Count

    671
  • Joined

  • Last visited

Everything posted by karlo

  1. function get_microtime() { list($usec, $sec) = explode(" ", microtime()); return ((float)$usec + (float)$sec); } so what's the list() function? and return() function?
  2. Can you give me an example of those array, loops, and randomizing functions? and microtime functions? and also please include a tutorial for those kind of things.
  3. ZoneAlarm is really slow. Which of the two are the best, Avast! or NOD32? can you recommend a STANDALONE firewall and fast?!
  4. Ok, here's another. After looking at many PHP codes, I will call it "PHP Shortcuts". Do you still know any other "PHP Shortcuts"? Example, to "print" the visitor's IP address, I use <html><head></head><body><?php print $_SERVER['REMOTE_ADDR']; ?></body></html>After seeing someone's codes, I saw an easy way<?=$_SERVER['REMOTE_ADDR'];?>So, you know any more of that? And for MySQL, I know there are many ways to retrieve the results. But how? Can you really teach me on how to use MySQL in PHP? Especially in LOOPS. I'm planning to create my own CMS. Please help me again. For my first thread, thank you all for helping me. But in this new thread, please help me!
  5. Thre's something wrong with the "http://www.htmldog.com/" link. Do you think that "VIM" will really help me? Why do I need it's tutorial?
  6. The website dosen't work! Do you know any other website?
  7. how about for dialup users?
  8. It's more difficult! Especially in using Arrays! http://forums.xisto.com/topic/7711-confused-some-php-functions-that-i-am-confused/
  9. First of all, if you have answers to the following Feel free to answer them all. Now, in PHP i know there's microtime, srand, float, array_rand, arrays, foreach, or any other loop functions. i'm really confused. Please help me!
  10. WOW! i can't believe that i can read it for less than 15 seconds! where did you get it?
  11. can you give me the link where this "lite" version of mysql is located?
  12. I saw many "weird things" when entering my name "karlo"
  13. FrontPage dosen't create W3C certified pages.
  14. Yes. Or you can change it... example "images/rotate/ads/image"
  15. So, what kind of issues did Firefox fixed?! Did it fixed the Memory Leak issue? the EATING MEMORY SO BIG issue?
  16. First, i'm planning to use preg_match, ereg_match, etc.. I think "preg" and "ereg" uses something like in the Apache's RewriteModule the "[0-9]" something like that... Do you know a tutorial that will easily teach me on how to do that? Second, I'm planning to use Apache Rewrite. But I really don't know how to use. Do you know a tutorial that will easily teach me on how to do that? Third, while openning some php scripts, I didn't get the meaning of example: <?php$sample1->//some string here ?>What does it mean? I didn't master the array functions of PHP. Do you know a tutorial that will easily teach me on how to do that? Fourth, I really need to master PHP easily. Do you know a tutorial that will easily teach me on how to do that? Fifth, I'm planning to use MySQL. But It's really difficult for a beginner like me to learn that. Do you know a tutorial that will easily teach me on how to do that? Sixth, About offline debugging of my website, I have Apache 1.3, and the latest version of PHP. that's why before uploading my files, I know that they will work because i debug them offline. My computer will act like a server, but offline. Now, how can I use MySQL? The download size is very big! and also, I remembered, I tried it, 29 MB, and with PHPMyAdmin. Is there any other way to download a LITE version of mysql to be used for offline debugging purposes? and also, is the a stand alone program that will let me manage and edit databases? I hope that you will be able to answer all of my questions. Oh yeah, another one, how can I create a PHP script that will be easily readed by people?
  17. First I need to create a website. The layout is a little similar to PostNuke and PHPBB. 3 table layout.But many said that I must use css/div instead of tables. How will I do it? Please provide many references.Second, what WYSIWYG editor would you recommend?I don't like the following:Macomedia DreamweaverCoffeeCup HTML EditorMicrosoft FrontPagePlease recommend some more...
  18. Another easy to use and to apply PHP tutorial. <?php print $_SERVER['USER_AGENT']; ?>Means to OUTPUT the visitor's browser. <?php print $_SERVER['REMOTE_ADDR']; ?>Means to OUTPUT the visitor's IP address. <?php print $_SERVER['SERVER_NAME']; ?>Means to OUTPUT the current server. <?php print $_SERVER['DOCUMENT_ROOT']; ?>Menas to OUTPUT the current location where the PHP script is located. How to apply: Create a PHP script with any file name. <html><head><title>Sample PHP Script</title></head><body><div align="center" style="font-size: 11px; font-family: verdana; color: black;">Hello! Welcome to website.com!Your current browser is: <strong><?php print $_SERVER['USER_AGENT']; ?></strong><br>Your IP address is: <strong><?php print $_SERVER['REMOTE_ADDR']; ?></strong><br><br>This script is located at <strong><?php print $_SERVER['DOCUMENT_ROOT']; ?></strong> on <strong><?php print $_SERVER['SERVER_NAME']; ?></strong><br><br><strong>If you try to hack my site, I'll know who you are!</strong></div></body></html>There. It's finish. What do you think?
  19. I want something that has a autocomplete(a popup box) example if I enter getenv( <- there will be a tooltip about the function
  20. PHPNuke PlatinumPHPNuke PostNuke Try the above CMS. I recommend the 1st one.
  21. First, It's really confusing. Do you know any tutorials on Image Manipulation on PHP? Here's another simple one: 1. Create a 5 image. 2. Rename them to something like: image1.jpg; image2.jpg; and so on... 3. Create your PHP file (rotation.php) 4. Enter the following code: <?phpheader("content-type: image/jpeg");readfile("image".mt_rand(1,3).".jpg");?> 5. Execute your script.
  22. Norton Antivirus is being overprotective. And it really consumes big system resources. AVG, it dosen't detect all viruses. Check out Virus Bulletin.
  23. I need a Text Viewer, with PHP support, HTML if neccessary.Because i've tried all, EditPlus and UltraEdit, and I'm not satisfied. Can you still recommend another program(s)?
×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | 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.