Recent content by mfurqanabid

  1. mfurqanabid

    Rounded corner Boxes in CSS

    YOu can also make a round corners for old browsers line ie6 using javascript libraries View: http://www.phatfusion.net/roundedcorners/index.htm
  2. mfurqanabid

    Rounded corner Boxes in CSS

    Use the following code in CSS .element { border-radius:5px; -moz-border-radius:5px; -webkit-border-radius:5px; }
  3. mfurqanabid

    Smarty( Fatal error: require() [function.require] )

    Use this <?php $serverpath =$_SERVER["DOCUMENT_ROOT"] . "/"; // INITIATE SMARTY CLASS require($serverpath . "include/smarty/Smarty.class.php"); $smarty = new Smarty(); // ASSIGN SMARTY TEMPLATE DIRECTORY PATHS $smarty->template_dir = $serverpath . "templates"; $smarty->compile_dir =...
  4. mfurqanabid

    MS Access

    Yes. You already have all the tools you need if you are running entirely under Windows 9x/Me, or NT/2000, where you can use ODBC and Microsoft's ODBC drivers for Microsoft Access databases. If you are running PHP on a Unix box and want to talk to MS Access on...
  5. mfurqanabid

    Sessions

    I think it should be in tmp directory
  6. mfurqanabid

    Mod Rewrite Help

    use [L] after the ReWrite Condition. for more information visit this url http://httpd.apache.org/docs/1.3/mod/mod_rewrite.html
  7. mfurqanabid

    Redirect without meta tag

    Use javascripts for redirection. <script language="javascript"> window.location = "filename.html"; </script>
  8. mfurqanabid

    ajax problem

    Hi stop using old techniques. Use jQuery object and i am sure it will give you more benefit. jQuery site: http://www.jquery.com/ jQuery ajax reference: http://docs.jquery.com/Ajax
  9. mfurqanabid

    MySql Connection String

    you can connect to mysql server through ip address
  10. mfurqanabid

    website suspended....terminated

    open http://support.x10hosting.com/ for unsuspension
  11. mfurqanabid

    &apos; Error

    use WYSIWYG Editor, Like FrontPage, Dreamweaver etc.
  12. mfurqanabid

    WordPress 2.7 Available for Download

    2.7 is not slower. it is faster than 2.6 . Slow speed if u are using shared server hosting.
  13. mfurqanabid

    session error

    brother remove the white spaces b4 session_start();
  14. mfurqanabid

    Please Help!

    Hi, Where my addon domains are gone? i m using mfurqanabid.co.cc for mfurqanabid.x10hosting.com. When i remount addon it's display an error assign to another user. Cpanel: mfurqan Please help me.:lockd:
  15. mfurqanabid

    [PHP] cut off 160 chars

    <?php $lengthover = strlen($message); if($lengthover > 160){ $messagepart_1 = substr($message, 0, 160); } echo $messagepart_1; ?>
Top