Recent Posts

How to get the query string value in perl cgi script

Posted by admin | Posted in perl | Posted on 03-02-2010

0

In this tutorial we will see how to get the query string value using very simple perl CGI script.
When we hit a URL from the web browser with a query string say
http://mistonline.in/cgi/data.cgi?program=php
In which program=php is the query passed.Now we will see how we get the same value using perl CGI script.
Here is the code

#!/usr/bin/perl

#Script [...]

Share and Enjoy:
  • Digg
  • Sphinn
  • del.icio.us
  • Facebook
  • Mixx
  • Google
  • De.lirio.us
  • Xerpi

Upload Your Scripts For Free

Posted by admin | Posted in Others | Posted on 24-01-2010

0

Hello visitors,

I have now introduced a new option in Mistonline.in , My visitors can easily upload their own scripts or can share with me the URL of your website so that i can post your tutorials also in my website.All this  for Free , you dont even need to register.You have to just provide [...]

Share and Enjoy:
  • Digg
  • Sphinn
  • del.icio.us
  • Facebook
  • Mixx
  • Google
  • De.lirio.us
  • Xerpi

How to run CGI or Perl Scripts in IBM Http Server [IHS] or Apache Servers

Posted by admin | Posted in perl | Posted on 21-01-2010

0

Hi Guys,
I am back again with yet another tutorial on how to run cgi scripts in Apache or IBM IHS [HTTP Server]
1)First of all as i always say, take backup of HTTPD.CONF
2)Now open the httpd.conf with you favourite editor.Mine is notepad ++ ofcourse.
3)Find this entry LoadModule cgi_module modules/mod_cgi.so and uncomment it if it is commented [...]

Share and Enjoy:
  • Digg
  • Sphinn
  • del.icio.us
  • Facebook
  • Mixx
  • Google
  • De.lirio.us
  • Xerpi

Include files in php using include, include_once, require or require_once

Posted by admin | Posted in PHP | Posted on 19-01-2010

0

The Core PHP Constructs for Including Files
There are four core constructs for including files into your PHP scripts. The main objective is for you to create code in separate files and then be able to use that code to include functions, variables and etc, in other PHP scripts. You have two main options. To include() [...]

Share and Enjoy:
  • Digg
  • Sphinn
  • del.icio.us
  • Facebook
  • Mixx
  • Google
  • De.lirio.us
  • Xerpi

Load Another Webpage Content Using Simple Jquery

Posted by admin | Posted in Jquery | Posted on 16-01-2010

0

Guys here we are gonna see how we can load another webpage content using jquery, very simple to use.
Code:
1. HTML Page
Here is the code of “test.html” file
<head>
<title>Content Showing Script</title>
<script type=”text/javascript” src=”jquery-1.2.6.js”></script>
<script type=”text/javascript”>
function content()
{
$.ajax({
url : “getpage.php”,
success : function (data) {
$(”#content”).html(data);
}
});
}
</script>
</head>
<body>
Get The Content<br><input type=”button” value=”Get Data” onClick=”
content();”><br><textarea id=”content” rows=”10″ cols=”50″></textarea>
2.  Edit the GETPAGE.PHP page and add this [...]

Share and Enjoy:
  • Digg
  • Sphinn
  • del.icio.us
  • Facebook
  • Mixx
  • Google
  • De.lirio.us
  • Xerpi