Recent posts

Good evening everybody,

I contain more than 10,000 video files. Most of the files are in .flv format files. All these videos are played perfectly before.

At the time of formatting my system, I got backup them in DVDs. Now, when I tried to play them, some videos played,...



Read more

Dear friends,

Here is the C source code :

void travpost(node *root) {
node *p=root, *q=NULL;
stk.top=-1;
do {

while(p!=NULL)) {
push(P);
p=p->left;

}

if(stk.top!=-1) {
p=p->left;
}
if (stk.top!=-1) {
p=pop();
if((p->right!=q)&&(p->right!=NULL)){

Read more

Hey,

Following is the script in perl.

#!/usr/bin/perl

open(TXT, "<nonsuch.txt") || $error($!);
@data = < TXT >;
close(TXT);

print "Content-type:text/htmlnn <html>";
foreach $item(@data)
{
print "<li>" $item";
}
print "</html>";

sub error
{
print "Content-type:text/htmlnn";
print "<html><h3>Error: $_[0] </h3></html>";
}

I got errors while running...



Read more

Hi,

I just want to ask how to remove the Folder Options item from all Windows Explorer window that is under the Tools menu. I want to do this because I'm not the only one using my computer; I want to make sure that my hidden files and folders will...



Read more

Hi,

I use a regular expression to validate the date.

But it does not work properly. See my code :

function checkdateformat(userinput){
var dateformat = /^d{1,2}(-|/|.)d{1,2}1d4}$/
return dateformat.test(userinput) //returns true or false depending on userinput
}

Is there any other regular expression available to check the date...



Read more

Good evening,

I have to prepare a table of accounting states. It contains about 40,000 records. And it takes more then 300 pages. But the problem is I have to set the row headings for every page manually. It is a burden for me.

How do you set it...



Read more

Hello,

Good Morning to all. Please help me. We do web development applications.

We face a problem with inserting a Flash Banner in a static HTML Page.

We follow the following code. It works fine on Firefox. But when we come to Internet Explorer, it overlapping the top menu.

We inserted...



Read more

Hi,

Study the following code :

<script language="php">
# Set a few variables
$site_title = "PHP Recipes";
$bg_color = "red";
$user_name = "Chef Luigi";
</script>
<html>
<head>
<title><script language="php"> print $site_title; </script></title>
</head>
<body bgcolor="<%=print $bg_color; %>" >
<?=$site_title; ?>
<?
# Display an intro. message with...



Read more

When I was working in my MS-Excel 2007, I got a regular error message relating to Privacy warning. What is the this? It's very irritating to me. I tried to solve this in many ways. But, It is not possible for me. You can see in my picture.



Read more

I am using PHP CMS i.e Wordpress. I install it in my localhost. When I check the site, it shows an error message : [an error occurred while processing directive]. I capture the screen shot and put in this post. Help me if anybody knows.



Read more