hello to all, can anyone tell me how can we work with wurfl classes to connect with mobile devices. thanks in advance...
426
KARTHIKEYAN RANGASWAMY
karthikranga83
Apr 2, 2007 12:59 pm
Hai Friends, I am karthikeyan. i am in need of Help.i am having Search in one php file.If the keyword is given and search is clicked a small frame like thing...
427
Amit Rana
amitrana77
Apr 4, 2007 9:34 am
Yes, its done using divs. you will have a div (below your search critria) and you will fill this div dynamically using an asynchronous request. have a look at...
428
senthil kumar
pkn_net
Apr 4, 2007 12:15 pm
hi guys i has situation like this i want to run the particular php script whenever some data comes from the (pc com port).i dont know when it comes,usually we ...
429
thisistrinath
Apr 5, 2007 6:31 am
Hello, I am trying to index my site using PHP to create a search facility. I finished the indexing of HTML part but I don't know how to index the pdf files on...
430
Amit Rana
amitrana77
Apr 5, 2007 6:32 am
Do you have a script to monitor pc com port? Write a program in java (or language of your choice, I dont think you can do this in php) which will wait for data...
431
veevin06
Apr 7, 2007 1:58 pm
... Have you tried phpdig ?? http://www.phpdig.net/ It creates a fulltext index of the pdf files. It does a full text index on HTML also. BTW , what system...
432
thisistrinath
Apr 7, 2007 2:03 pm
My code: $content=file_get_contents("http://infolab.stanford.edu/pub/papers/google.pdf"); echo $content; the above code works perfectly well but when I try the...
433
Vinod Kumar
veevin06
Apr 7, 2007 2:05 pm
Have you tried phpdig(http://phpdig.net). It can also be used to index html files. BTW, how are you indexing the HTML files now ? Vinod Subject: [bang-phpug]...
434
pritesh loke
priteshloke
Apr 7, 2007 2:06 pm
Hello To all I am searcing one class which can execute my sql insert and update like query just passing table name and parameters also select query and join...
435
Amit Rana
amitrana77
Apr 7, 2007 2:06 pm
This link might help http://www.searchtools.com/info/pdf.html ... Posted by: "thisistrinath" thisistrinath@... thisistrinath Wed Apr 4, 2007 11:31 pm...
436
KARTHIKEYAN RANGASWAMY
karthikranga83
Apr 9, 2007 6:37 am
Hello Friends, I am karthikeyan.I am using MYSQL and PHP.i have one table in mysql database with date as one field.I want to delete the records that are 10...
437
Vinu Thomas
uglyftp
Apr 9, 2007 6:41 am
You can check out the following links: 1. For windows there is a php extension which allows you to communicate with your serial port: ...
438
Vinu Thomas
uglyftp
Apr 9, 2007 8:40 am
Hi Karthikeyan, The command you may want to run would be php /home/itsfreea/public_html/www.itsfreeads.com/delete.php instead of cd. cd just tries changing to...
439
Anil Konsal
anil_konsal
Apr 16, 2007 5:28 pm
hi all, with all ur support, i finally succeeded in making a PHP Soap Server and asp.net client. but now i have an issue of 1. making multi lingual CMS. for...
440
Muguntharaj Subramanian
muguntharaj
Apr 16, 2007 5:29 pm
Hi Karthikeyan, have you included the slash (/) before home? That might have lead to this error also. Try this: ...
441
Vishwanath B
vishwanath_cse
Apr 17, 2007 2:37 pm
hi.... i know the following is a simple program but the problem i am facing is i am not able to see the output as hi.... just when i click the button the page...
442
CS Shyam Sundar
ssundar85
Apr 18, 2007 2:57 am
Dude, You need to get the value of "sub" using $_GET['get39;] also, isset checks if a variable is set, in this case, you have not, so it will obviously NOT...
443
CS Shyam Sundar
ssundar85
Apr 18, 2007 2:57 am
Dude, You need to get the value of "sub" using $_GET['sub39;] [ oops: i wrote as get in my prev mailv ] also, isset checks if a variable is set, in this case,...
444
Sabari nath
nicesabari
Apr 18, 2007 2:58 am
hi vishwanath, simply you can use this IF Condition for checking whether the value is SET or Not *if($_REQUEST["sub"] != "")* instead of this IF...
445
Ved Prakash
ved74
Apr 18, 2007 2:58 am
Vishwanath, You are trying to check for a variable to be set ($sub) that would never get set. first try getting the value of sub from global variable ...
446
maq sood
maq005
Apr 18, 2007 7:05 am
Please see the code below...... Its better to use method in form tag, isset will also work, as when click submit sub will be set.... The code you have written...
447
Vishwanath B
vishwanath_cse
Apr 18, 2007 7:06 am
hi ... thanks for all who gave me information ragarding isset...i came to know the problem and i executed the script by assinging value to $sub but the problem...
Vishwanath, Submit button on your form is working fine, your program flow is wrong. There are lots of tutorials on php for beginners, you can look into them...
450
pannet1@...
pannet1
Apr 18, 2007 2:45 pm
dear list, do you know of the fastest way to print from a webpage using php or a combination of php and others ? the problem is the print very fast from client...
451
Vishwanath B
vishwanath_cse
Apr 18, 2007 2:47 pm
hi all... thanks for all of u who helped me in this isset problem ....to work this program correctly we need to set register_globals=on in php.ini.... and...
452
Satheesh G
pcg794u
Apr 18, 2007 2:49 pm
i am new in php, i want to create a dynamic multi level navigation menu in php,it is very urgent , please any one help me to solve this problem regards prasad...
453
Vishwanath B
vishwanath_cse
Apr 19, 2007 5:58 am
hi... u can use window.print() function in javascript....if u want to print some text u can use div tags.... regards vishwanath pannet1@... wrote: dear...
454
Vinu Thomas
uglyftp
Apr 19, 2007 6:32 am
Karthick, If you're looking for a direct print option from PHP, without having to use the browser's print dialog, you can check the PHP Printer functions over...