Jump to content

lovelycesar

Members
  • Posts

    29
  • Joined

  • Last visited

    Never

Everything posted by lovelycesar

  1. Hello I would like to know how to parser chemical and mathematical formulas into images or html-based layout. Please advise me. Thank you.
  2. Thank you, More feedback's are welcome.
  3. Hello, I am from Asia, your site is loaded slowly here, perhaps you have the big-size images. About the design, I think it was well done.
  4. Hello, I would like to know if my website, www.cuahangsimsodep.com, is loaded slowly in EU and US or not. Please help me and let me know how many seconds you wait to my website fully loaded in your browser. Thank you in advance.
  5. Welcome here, guy!
  6. I have a tiny code like this: <?php $memo_start = memory_get_usage(true); // I do somthing here $memo_end = memory_get_usage(true); // calculate memory used $memo_used = $memo_start - $memo_end; ?> As of manual from php.net, it returns the amount of memory, in bytes, that's currently being allocated to your PHP script. However, at the beginning of my project, it shows 128 kb, now it shows 768 kb, with nothing changed from server's config. So, my question is: is this PHP function returns the amount of memory for whole PHP scripts on server or just a script standalone (this script) ? Thank you.
  7. I would like to know what is the best method (the most intelligent and comfortable for users) to paginate a result table with PHP/MySQL? Provided I have a result set of 100 pages. Method 1: <select> <option>1</option> .... </select> Method 2: Link on Page 1, 2, 3 ... 100 If there is any algorithm with PHP for automated these displays, please demonstrate it.
  8. Is this what you mean?... No, I meant your virtual host's config file, e.g. <VirtualHost ...> .... </VirtualHost>
  9. Could you show your site's Apache config file ? I suppose you have a low level of warnings in your site_error.log ?!
  10. Debian has its packages for suPHP if you would like to run as CGI-like mode. apt-get install apache2 apache2-mpm-prefork libapache2-mod-suphp
  11. Thank @ragax, and especially @Psycho, for preg_match() + checkdate() combination.
  12. Hello, If you find out nothing on your site's error log file, so it's a strange for 'freezeness' of your application. I have met once as yours. Let you try increase the memory_limit from '128M' into '256M' or '512M'. Don't miss restart the Apache!
  13. Hello, I would like to write a function that lookup a birthday throughout a string for either dd/mm/yy or dd/mm/yyyy formats. How can I do that with preg_match? Thank you.
×
×
  • 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.