I am new to PHP.
I want to start from stratch for a script to have box of Daily Bulletin like a shout box.
Any users can post message on the web page. Maybe like a box of daily bullentin, as time passed, it will gray out (strikethrough) like after couple of days or weeks.
There is an option of...
I try this link, when I try in .pl file, it doesn't do nothing.
I also read this link, PERL in PHP
<?php
print "Hello from PHP!\n";
$perl = new Perl();
$perl->require("script1.pl");
print "Bye!\n";
?>
Give me this:
Hello from PHP!
Fatal error: Class 'Perl' not...
php code config.php, this is the layout that I want.
should I do a for loop and print out each .php file instead?
<div id=menu style="float:left">
<?php include('nav_link.php') ?>
</div>
<div id="footer">
<?php include('copyright.php') ?>
</div>
<?php include('lastmodify.php') ?>...
I want to include a PHP file inside a PERL file..
script1.pl
#!/usr/local/bin/perl
use strict;
use warnings;
use CGI qw(:standard);
use CGI::Carp qw(fatalsToBrowser warningsToBrowser);
print header();
warningsToBrowser(1);
print("<?php include('require_file.php') ?>\n\n");
It's in the...
I want my PErl to output the content of XML to HTML table like this:
<table border="1">
<tr>
<th>Type</th>
<th>Contact</th>
</tr>
<tr>
<td>Work</td>
<td><a href="../search.asp?ID=123456">John Doe</a></td>
</tr>
<tr>
<td></td>
<td><a href="../search.asp?ID=05789">Jack Doe</a></td>
</tr>
<tr>...
I try to follow the example from http://search.cpan.org/~grantm/XML-Simple-2.14/lib/XML/Simple.pm"]XML Parse[/URL] with foo.
#!/usr/local/bin/perl
use XML::Simple;
my $ref = XMLin('foo.xml');
#also with my $ref = XMLin();
use Data::Dumper;
print Dumper($config);
print $config->{logdir}...
I know that, but sometimes I get disconnect.
And NET USE \\server\path again will not work connect.
I have to delete the path and do a net use again.
I was wondering if there is a command to determine the network is still running, then if not, delete it, and map it again without doing it...
want to compare if the text match or not.
Like the nameList.txt is after 3 character until it hit whitespace or tab.
Just grab this only: | | |CCCCCCC* and takes only CCCCCCC and ignore the rest on that line.
And in checklist.txt, just grab the second column only.
1 CCCCCCC takes only -->...
I wrote a batch script to mount the network automatic at startup. It doesn't allow to map as drive.
I used:
mount.bat
NET USE \\SERVER
Will output..
The command completed successfully.
Now I have a problem with that,
When I checked NET USE:
Disconnected \\SERVER\IPC$ Microsoft...
I need help on the e-mail form, can any one help me?
I want the form to check if everything is inputs correct such as an valid e-mail.
If the user choose General, it will send to general email. general@email.com. If the user choose Customer, it will send to Customer e-mail. customer@email.com...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.