Jump to content

bilis_money

Members
  • Posts

    621
  • Joined

  • Last visited

    Never

Everything posted by bilis_money

  1. let say i want to create a program that will press the button. i want the program to automatically move the mouse cursor then click a few buttons, without manually dragging my mouse using my bare hand.
  2. what is the best language for controlling or reprogramming the mouse cursor under windows OS? C++, C# or Visuall c++? and why?
  3. ha ha ha, nice one daniel. sometimes when we rush we forgot to use google LOL.
  4. sorry, but i'm trying to find the IE Dev. toolbar like the Firebug toolbar. Where is IE dev? any hand pls.
  5. here http://www.smarty.net/manual/en/
  6. Sometimes when you read an article or programming tutorial and when your not feeling well those things don't get inside your brain. What do you do when this happens to you? Do you go to sleep? Drink freezing beer? Take a shower? Swimming? Biking? or do Bungee jumping? or just continue the reading even though you don't understand it properly?
  7. try this my friend <?php function print_rss($url,$count=2,$length=150) { require_once('magpierss/rss_fetch.inc'); require_once('smart_trim.php'); $rss = fetch_rss($url); foreach ($rss->items as $item) { if (++$cnt>$count) { break; } $href = $item['link']; $title = $item['title']; $published = strtotime($item['pubdate']); $content = strip_tags($item['content']['encoded']); $body = smart_trim($content, $length, false, '…'); echo '<p>'; echo '<span style="font-size: 80%;color:#9BB23B;">'; echo date(’F d, Y’, $published); echo '</span><br />'; echo '<a href=\"$href\">$title</a><br />'; echo '<span style="font-size:80%;color:#666;">'; echo $body; echo '<br /><a href=\"$href\">More &#187;</a></span>'; echo '</p>'; } } ?>
  8. <?php is the most recommended one.
  9. why not wait for barand for a while. i'm sure he will be here. and ask him.
  10. could you post the codes here my friend.
  11. yes you can create your own CMS using php and mysql. but my advice is to save you time my friend. just use the existing one like JOOMLA.
  12. yes you can use JOIN for this case. and what do you mean by hits exactly?
  13. Ha ha ha this is funny thread. my friend onedumbcoder they have the right to move the thread because they are just organizing the the threads and not clutter it. and please don't blame them, they are just doing their job my friend. If you want to make complaints their is a right forum for that. here, http://www.phpfreaks.com/forums/index.php/board,11.0.html We can't blame because you are a beginner here. well, you'll get to use to this rules here, http://www.phpfreaks.com/forums/index.php/topic,6264.0.html and my friend please try to be friendly as well. BTW, what is your mysql problem?
  14. SELECT hd_id.hc, hd_catname.hc, h_id.hd, hd_id.hd, h_question.hd, h_answer.hd, h_dateadded.hd, h_views.hd FROM helpdesk_categories AS hc INNER JOIN helpdesk AS hd USING (hd_id) ORDER BY hd_id LIMIT 4;
  15. you learn a lot from this tutorial. http://evolt.org/node/60384 it has user level and remember me feature. and yes it's OOP... GOOD LUCK.
  16. Did you assigned session_start();?
  17. I think it is helpful if you post the error message here, so it is easy for us to spot it.
  18. Why are these blank? //database info $dbhost = "localhost"; $dbname = ""; $dbuser = ""; $dbpass = "";
  19. or sometimes godaddy server is in maintenance or your isp is in maintenance. there are many factors really. yeah shared hosting is also problematic, but i guess dedicated is expensive.
  20. http://www.whenpenguinsattack.com/2007/04/09/10-tips-for-optimizing-mysql-queries/ or google it... http://www.google.com/search?hl=en&q=%22optimizing+mysql%22&btnG=Google+Search Yes, it affect the server. always close the database connection, it's a good programming habit.
  21. a good habit is always create the object after you are done declaring the class for example, auto.php <?php class auto { function auto() { // more code here... } } $auto = new auto(); //always instantiate the object after the class declaration ?> ship.php <?php include ('auto.php'); class ship { function ship() { // more code here... } } $ship = new ship(); //always instantiate the object after the class declaration ?>
  22. close it so the server don't suffer.
  23. My advice is find a free hosting company that supports php. http://www.google.com/search?hl=en&q=%22free+hosting+with+php%22&btnG=Google+Search For the manual read them all. http://uk.php.net/manual/en/
×
×
  • 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.