Search results

  1. P

    php loop within switch ??

    <?php $view = ($_GET['view']); $path = "html/"; $dir_handle = @opendir($path) or die ("ERROR"); //whileloop while ($file = readdir($dir_handle)) { switch($view){ case:$file; include($file); break...
  2. P

    PHP MySQL HTML generating tables... after..fetching recods

    <style type="text/css"> table { table-layout:fixed; width:100%; height:100% border:1px solid #f00; word-wrap:break-word; overflow-y: scroll; } </style> I think your problem solved. Asif http://www.phpasks.com
  3. P

    Need help with PHP script for ping monitoring for different location.

    Ping a server or web site using our network of over 10 monitoring stations worldwide Need help with PHP script for ping monitoring for different location. Hi All I need some assistance with getting ping monitoring for web site. Basically I have to write a PHP page where if a...
  4. P

    Need help with PHP script for IP address of sites

    Currently my problem solved. I have got my doamin ip. Currently my problem solved. I am compare title for domain throw and ip throw. I need how much sites in that shared ip. ????? <?php //call function get_ip('yahoo.com'); function get_ip($val) { $handle = fopen('http://www.'.$val...
  5. P

    Need help with PHP script for IP address of sites

    Need help with PHP script for IP address of sites Hi All I need some assistance with getting the IP address of a web site. Basically I have to write a PHP page where if a site name is supplied it would return back the IP address of the site as well as specify if the IP Address is Dedicated...
Top