No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
12 Posted Topics
Re: Hello qadeer, try to use the commands shell $ pdftotext <file.pdf> <file.text> this program come with the package xpdf. or try directly: $ convert <file.pdf> <file.html> when I do the test the program convert in various html files with one gif file :( see you, fpepito [QUOTE=qadeer]Dear Friends,, i want … | |
Re: Hello nikez, Look at this example, and try it in [url]http://www.fpepito.org/php/test7.php[/url] I hope that help, fpepito [PHP] <? if (!isset ($autor)) { $autor = "pepito"; } echo "<FORM ACTION=$PHP_SELF>\n"; echo "Autor : <INPUT TYPE=TEXT NAME=autor VALUE=$autor><BR>\n"; echo "<INPUT TYPE=submit value=\"Send the variable\">\n"; echo "</FORM>\n"; ?> [/PHP] | |
Re: Hi chunguy, Try this code: [url]http://www.fpepito.org/php/test4.php[/url] [url]http://www.fpepito.org/php/test4.txt[/url] I hope that help to resolve, fpepito ##### main.php [PHP] <? if (isset($name)) { echo "You have enter with the name: <B>$name</B><BR><BR>\n"; } if (isset($name) && ! isset($ok)) { $name = "new_name"; } if (isset($name)) { echo "welcome <B>$name</B><BR>\n"; echo "<A HREF=$PHP_SELF?name=$name&age=$age&ok=1>Reload this … | |
Re: Hello typedef, I don't know if I have understand all of your problem, here a way to constroy a SQL with various fields fpepito ######## [url]http://www.fpepito.org/php/test6.php[/url] [PHP] <? if (!isset ($autor)) { echo "<FORM ACTION=$PHP_SELF>\n"; echo "Autor : <INPUT TYPE=TEXT NAME=autor VALUE=Pepito><BR>\n"; echo "Text : <INPUT TYPE=TEXT NAME=text VALUE=port><BR>\n"; echo … | |
Re: Hello billah_norm, 1. What is the genre of message. Timeout error, errors of connection acces inside the result of the web page, ... ? 2. Where are from the error ? Client => transport => apache => PHP => MySQL a. If the error is a connection timeout - the … | |
Re: Hi billah_norm, 1. On PHP I have search but found nothing, I think that is the limitation coming from Apache /etc/httpd/conf.d/php.conf /etc/php.ini 2. On MySQL you have a variable: > mysqladmin variables [...] max_connections = 100 [...] 3. On Apache look on file /etc/httpd/conf/httpd.conf # StartServers: number of server processes … | |
Re: Hi qazs, Difficult to answer, nothing strange in this part of code. Can you send the code of the function drawRow(). Or peharps just the result of this function. fpepito | |
Re: hello alexruimy, Try to use array fpepito try this example: [url]http://www.fpepito.org/php/test3.php[/url] [PHP] <? $customers = array( array("Firstname", "lastname", "address", "city", "state", "zip", "e-mail@hotmail.com", "url"), array("Francis", "Goncalves", "my adress", "Paris", "Ile-de-France", "75001", "test@hotmail.com", "http://ascejudo.mine.nu"), array("Francisco", "Goncalves Andrade", "my address", "Lisbon", "Estremedura", "60000", "test@hotmail.com", "http://www.fpepito.org/") ); ######### function read_customer($customers) { #read each … | |
Re: Hello rudysplif, Look on the next link, examples of a projet CueCat. On this How-to you have some scripts (perl, python, tcl, javascript, ...) for use scanner barcode. Without driver because it use the same communication that a keyboard. [url]http://www.beau.lib.la.us/~jmorris/linux/cuecat/[/url] I have some problem with my english language and not … | |
Re: hello kamui, a part of your answer: - identification of user - read all the files/directory of a directory todo: - read a file for the transfert - display only files on the list (actually all elements appears file & dir.) find it on [url]http://fpepito.dyndns.org/php/test2.php[/url] see you, and hope that … | |
Re: Hello qazs, Do you use the option AUTO_INCREMENT for the id column ? Perhaps that he can explain the result ... The option AUTO_INCREMENT is very nice. When you use it isn't necessary to count the number of rows, an counter increment automaticaly. fpepito example: id MEDIUMINT UNSIGNED NOT NULL … | |
Re: A little example: (try it in [url]http://fpepito.dyndns.org/test.php[/url]) I hope that help you, pepito ----------------- <? $myname = $PHP_SELF; session_register ("session"); if (isset ($session[lang])) { // if user choice another language, update the session[lang] if (isset ($lg)) { $session[lang] = $lg;} echo "Session existe, you have enter: $session[count] times<BR>"; echo "Your … |
The End.