- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 2
- Posts with Downvotes
- 1
- Downvoting Members
- 2
13 Posted Topics
As I understood from what you said that you are inserting into the table using UTF8 and and you are getting the english characters. I guess, this is an assuption since no clear input on the problem, the pages encoding/decoding must be set to utf8, same goes for the database. …
cPanel uses Exmin as mail server, when sending an email via smtp/email client such as Thunderbird, Mail.app and outlook, a copy of sent mail is stored in local Sent folder but not on remote Sent folder (mail server). While when using IMAP it does because the client will be communicating …
I really don't understand your piece of code that much, and what is to be added to labels and text boxes here is something that might help [CODE] if($ele == 'txtbox') { $var5 = "<label for=\"lbl1\">$somevalue</label>"; $var5 .= "<input type=\"text\" name=\"xyz\" id=\"lbl1\">$anothervalue</input>"; } echo $var5; [/CODE] if its not clear …
Visit [URL="http://www.thesitewizard.com/general/set-cron-job.shtml"]http://www.thesitewizard.com/general/set-cron-job.shtml[/URL] it will provide you with details and instructions I hope this was helpfull
first off lets fix the counter.php code [CODE] <?php $count_my_page = ("hitcounter.txt");//please take in consideration that the file hitcounter.txt already exists $hits = file($count_my_page); $hits[0]++; $fp = fopen($count_my_page , "w"); fputs($fp , $hits[0]); fclose($fp); echo $hits[0]; ?> [/CODE] And now to embed the code in a textbox [CODE] <html> <head> …
This is a ajax(JQuery)/php matter giving you code just like this will not solve your problem. never the less here is some a sample and taking in consideration that you already know how to deal with data retrieval via mysql include the jquery library in the page header include this …
[CODE] <html> <head> </head> <body> <?php $ids = ("numbers.txt");//make sure the file is in the same directory as the php script $id = file($ids); ?> <input value="<?php echo $id[0];?>" name="number" readonly="readonly" /> </body> </html> [/CODE] I hope this help, else please state your objective clearly
[CODE]#include<iostream> using namespace std; int main() { int x,y,z; cin>>x>>y>>z; cout<<"sum is"<<[B]x+y+z[/B]<<endl; return 0; } [/CODE] simply... if you need to create something that add more or less than 3 or various numbers of number simply use a while loop here is something quick and nice [CODE]#include<iostream> using namespace std; …
As said before, you need to pass the result set of the estimation using hidden inputs or session variables, I prefer hidden inputs forms since its handling is easier, then pass them to an email script using POST form (this form may contain the contact information). in case you don't …
Hello all, A friend of mine developed a program using vb 6 using an "MS Access" database. he used ODBC to connect the users to database over network. The problem is he needs to connect 20+ computers to this program, and all computers are equipped with winxp sp2, that as …
try to create a php file include the following code in it. [CODE] <?php phpinfo(); ?> [/CODE] and see if mysqli is enabled. if not check be reminded to set the extension directory correctly windows ex: extension_dir = C:\php\ext Linux ex extension_dir = /etc/php/ext In the php.ini remove the semicolon …
Depending on how much a Linux user experience is, the attachment and evaluation is. When a person divot him/herself to creating these so called "Tools", He/She will be giving a huge part of their time and in away or another their life. Yes Sir, Linux is a religion. When you …
I would like to know what kind of database you are using, and where to is the message is sent. you have several choices, depending on the storage method you intend to use ex: database, file, email to address....etc.
The End.
saadsaidi