Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: Vesku
  • Order by date
  1. Vesku

    PERL <!--#exec cgi= in PHP !!

    Hi ! I have in Unix-system SHTML -document with <!--#exec cgi=&quot;/cgi-bin/news/news.cgi&quot;--> command. How can i do that same thing in PHP -document ? Thx !
  2. Vesku

    Replacing problem !!

    Hi ! In Perl i can replace all '\n' with <br>: $string =~ s/\n/<br>/g; But how can i do same thing in PHP ??????? Thx !
  3. Vesku

    Advanced search with MySQL

    Hi ! How can i make advanced search with MySQL ? If i have in STAFF -table value James Smith, how can i find that if i search using searchword 'Smi' or 'jame' ??? I have now code like this: $query=&quot;SELECT * FROM staff WHERE ID = '$searchword' OR Name = '$searchword' OR Email =...
  4. Vesku

    Help with frames and Javascript !!!

    Hi! I have JS-code like this: function makeArray() { for (i = 0; i<makeArray.arguments.length; i++) this[i] = makeArray.arguments[i]; } var SIJAINTI = 0; var ProductsLinkit = &quot;&quot;; var ProductsLinkit = new...
  5. Vesku

    Is there any way ???

    Hi! Is there any way to make PDF -files with Perl without Windows platform ????
  6. Vesku

    Sorting with Perl ???

    Hi !<br><br>I have flat database:<br><br><b>100¦Bond¦James<br>101¦Smith¦Jack<br>102¦Black¦Janet</b><br><br>How can i sort this database with Surname or First Name ??<br>I can sort with number <b>sort ( $a cmp $b ) @array</b> but....<br><br><br>Please help !<br><br>Thanx!<br><br>
  7. Vesku

    Image download ??

    Hi !<br><br>How can i make download -script, which don't show JPG-image, only download it ???<br><br>Thanx!
  8. Vesku

    Modify JPG/GIF -images on-fly with Perl ???

    Hi !<br><br><br>Is there way to modify JPG/GIF -images on-fly with Perl?<br><br>I have image-library and i want to show little trumbnails. How can i make on-fly 600k image to smaller trumbnail-image with perl?
  9. Vesku

    Problem with uloading images via browser !!!

    Hi !<br><br><br>I have simple upload script, which transfer image to server. I have noticed that, i can not include any hidden-fields to upload-script....<br><br>Is there way to upload image and add information to <b>data1¦data2¦data3¦data4</b> based database ?????<br><br><br><br><br><br><br>
  10. Vesku

    Uploading image via browser ????

    Hi !<br><br>Is there a very simple way to upload .jpg or .gif images via IE and NS browser to selected directory ???<br><br>...and if is, how can i make that ?<br><br>Please help me !!!
  11. Vesku

    Database searching....

    ...One question about database (again!!)...<br><br>Andy, your script was great!<br><br>If i use lowercase letters that script does not find uppercase letters.<br><br>Ie.<br><br>James¦Smith¦Somestreet<br><br>If i use keyword &quot;james&quot;, nothing found...<br><br>Please help!<br><br>Thanx!
  12. Vesku

    Database searching....

    Thank you AndyBo !!!!
  13. Vesku

    Database searching....

    Hi !<br><br>Is there simple way to search from database ?<br><br>This is what my database looks:<br><br><b>1¦data1¦data2¦data3¦data4<br>2¦data1¦data2¦data3¦data4<br>3¦data1¦data2¦data3¦data4</b><br><br>How can i make search-script to that kind database ?<br><br><br><br>
  14. Vesku

    How can i replace %0A with &lt;br&gt;

    Hi Mike !<br><br><b>$value =~ s/\n/&lt;br&gt;/;</b> works only if you have one 'enter' in your data.<br><br>My situation is this:<br><br>I have textfield and i want replace <b>all</b> %0A with &lt;br&gt;.<br><br><br>When i write to textfield and press enter when i want new paragraph, output...
  15. Vesku

    How can i replace %0A with &lt;br&gt;

    Hi !<br><br>When i read form with Perl:<br><br>read(STDIN, $buffer, $ENV{'CONTENT_LENGTH'});<br>@pairs = split(/&/, $buffer);<br>foreach $pair (@pairs) {<br>($name, $value) = split(/=/, $pair);<br>$value =~ tr/+/ /;<br><br># $value =~ tr/%0A/&lt;br&gt;/;<br><br>$value =~...
  16. Vesku

    How can i remove one line from file ???

    Hi !<br><br>I have a problem...<br><br>I have datafile separated with ¦ -sign.<br><br>kori.dat looks like that:<br><br>data1¦data1¦data1¦data1<br>data2¦data2¦data2¦data2<br>data3¦data3¦data3¦data3<br>data4¦data4¦data4¦data4<br><br>How can i remove data1¦data1¦data1¦data1 -line or...
  17. Vesku

    Multi-Part Forms....

    Hi goBoating !<br><br>Thanks for your tips. They were very helpful. <br><br>Thanks to Loon too !!!<br><br><br><br><br>Vesku
  18. Vesku

    Multi-Part Forms....

    Hi Loon !<br><br>I have done like you said. Problem is, how can i make new HTML-page with one script and without writing information to file ? <br><br>Personal information<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;¦<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Question...
  19. Vesku

    Multi-Part Forms....

    Hello !<br><br>How can i make multi-part forms with one Perl-script ?<br><br>Exam.<br><br>Page 1<br>- Name<br>- Email<br>(When user click &quot;Next&quot; -button, name and email will return to Page 2)<br><br>Page 2<br>- Question 1<br>(When user click &quot;Next&quot; -button, all information...

Part and Inventory Search

Back
Top