[Solved] images on CGI or HTML files

Impossible to answer because you haven’t given us anywhere near enough information. But your code does give one potential clue. use CGI qw/:standard/; use DBI; print “Content-type:text/html\n\n”; print first(); print myform(); print second(); sub myform { return <<B; <form action=” method=’post’> <img src=”https://stackoverflow.com/questions/26614013/images/img0001.gif” id=”Shape1″ align=”top” alt=”” title=”” border=”0″ width=”1344″ height=”126″> … </form> B } You … Read more

[Solved] perl read multiple file

The glob function will allow you to retrieve a list of files names that match a certain pattern. If you load that list into @ARGV, then you can process all the files–even in order with a single loop: use strict; use warnings; use Getopt::Long; sub usage ($) { my $msg = shift; die <<“END_MSG”; *** … Read more

[Solved] Retrieve values from the reponse xml by GetGetElementByTheTagName

Here i am showing that how to parse the linked profile values from xml which is received in the response but not by the GetElementbyTheTagname. my $parser = XML::Parser->new( Style => ‘Tree’ ); my $tree = $parser->parse( $profile_xml ); print Dumper( $tree ); my $UID = $tree->[1]->[4]->[2],”\n”; print “User ID:$UID”; print”</br>”; This is the way … Read more