39,388 Topics
![]() | |
hye guys, i have a html code as below: <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Untitled Document</title> <script src="graph/enhance.js" type="text/javascript"></script> <script src="graph/excanvas.js" type="text/javascript"></script> <script src="graph/jquery.min.js" type="text/javascript"></script> <script src="graph/visualize.jQuery.js" type="text/javascript"></script> <link href="graph/basic.css" rel="stylesheet" type="text/css" /> <link href="graph/visualize.css" rel="stylesheet" type="text/css" /> <link href="graph/visualize-light.css" rel="stylesheet" type="text/css" /> <style type="text/css"> .dwpeAd { … | |
Please tell me which webhosting is good for the sites having php scripts? | |
Hi there I've uploaded a file to the server online and I can even see the file i uploaded but the problem is that I get "page no found" error when i try to open that file on my url, when I try to edit the file(online on the server) … | |
I am unable to maintain a GET variable with this pagination script. Was hoping you all could help. I am using a GET function so the user can choose which categories are displayed. I'm using a pagination script I found online and I am now confronted with this issue, when … | |
Hey Everyone, I previously had an issue with a date display format. I have a different question that deals with displaying singular or plural words using a version of an if statement that displays an "s" or displays nothing based on how many comments there are in a specific blog … | |
Hey guys, I am trying to dynamically parametize my url, but it gets lost and I have no idea why. Perhaps some insight from you guys will help. Here's the code: while($row = mysql_fetch_assoc($getID)) { echo "<tr>"; echo "<td><a href='View.php?id='" . $row['ID'] . "'>" . $row['ID'] . "</a>" . "<br … | |
How to convert oracle forms to php, is there an easier way to do that. ![]() | |
this is my controller i am very new to codeigniter. -------------------------------------------------------- public function joinus() { if($this->input->post('submit')) { $this->load->library('email'); $to=$this->admin_model->get_goinmail(); $from=''; $subject=''; $message=''; $config['mailtype'] = 'html'; $config['protocol'] = 'sendmail'; $this->email->initialize($config); $this->email->set_newline("\r\n"); $this->email->from($from); $this->email->to(@$to); $this->email->subject(@$subject); $this->email->message(@$message); if($this->email->send()) { $data['mail_status']="sucess"; }else{ $data['mail_status']="Un sucess"; } } $data['get_goinmail']=$this->admin_model->get_goinmail(); $data['content'] = $this->load->view($this->view_dir .'joinus',$data,TRUE); $this->load->view('template',$data); } i … | |
Hi, I have a wordpress blog already. I want to become a more advanced user so I install wordpress. However, what setting should I change in the file? Mainly wp-config-sample.php? Any other things I could do? Thanks. | |
Hello, is there a way to easily fix this: wamp server from time to time starts loading page very slow, once a day sometimes. So I then restart all services and it runs ok again. IS this a lot of work to find where that slowliness comes from or not? … | |
hi, im implementing a search on my site using a form on index.php that redirects to /includes/search.php currently it displays the results at domain.com/includes/search.php is there a way to do this more professional? im familiar to mod_rewrite but have already rewrits for my dynamic content and dont want to break … | |
there few number of questoins that need to be answered one does drupal data base has to co be collation? after i have executed the the database query in drupal instal i get error but i refresh and the tables are made in database(collation) on local host machine.Does this causes … | |
I'm not well conversant with java or AJAX, but how can i read each line of a string display each line of question and answers at a time, after a user have answered the question id displays the next question upto the last one. Im using fget () n php … ![]() | |
Hi I am not familiar with ajax. pls help me how i can do in script Below my script and using pdo and mssql 2005. Below script working fine. But everytime change the details, page refresh and display is delayed Pls help me --------------------------------------------------------------------------- index.php ---------------------------------------------------------------------------------------------- <?php include_once '../inc/connection.inc.php'; ?> … | |
**I really don't know what to do, and I really need the page. Please help me, thank you so much!** **The Error Code I get:** http://pastebin.com/wry2UuTA **The page code:** http://pastebin.com/xf9Ww5YS** | |
Hello, i have this table events: id_evento, evento_texto, evento_banner, evento_image, evento_cartaz, evento_idioma Now i can upload the image to evento_banner and evento_image, because they're the same only changes the size (the code is "inside" the <form>): <?php if(isset($_POST['Submit'])){ //Declara um Array para armazenar a mensagem de erro $error = array(); … | |
Any thoughts will be most welcome. In PhpMyAdmin and Dreamweaver cs6. I would like the user of my site to be able to select a category from a list that is populated by PhpMyAdmin and then, his or her selection to reveal all of the items on the database in … | |
Hi I am doing this HTML.net tutorial on php.I keep getting this error and I cannot figure out how to fix it.I am running php version 5.4 maybe this is the problem, I appreciate tour help: Parse error: syntax error, unexpected 'TABLE' (T_STRING) in C:\inetpub\wwwroot\phpconnect.php on line 6 This is … | |
Hello all! i have here a code that will display record from my DB. I would like to ask for help on how will i export the displayed record to excel? here is my code: <html> <head> <title>Export to Excel</title> </head> <body> <form action="saverec.php" method="post"> <?php define ('DB_NAME', 'try1'); define … | |
Hello, I tried to create a SOAP request but could not succeed. SOAP WADL url is **http://www.mobipost.com.au/httpapi/Messaging.asmx?WSDL** AND request should be like: <?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Header> <AuthenticationHeader xmlns="http://messaging.mobipostapi.thirdscreen.com.au/"> <UserName>SAMPLE_USER</UserName> <Password>SAMPLE_PASS</Password> </AuthenticationHeader> </soap:Header> <soap:Body> <SendSMSToContacts xmlns="http://messaging.mobipostapi.thirdscreen.com.au/"> <oSMS> <MessageText>THIS IS MESSAGE</MessageText> </oSMS> <ContactIDs> <int>123456789</int> <int>987654321</int> </ContactIDs> </SendSMSToContacts> </soap:Body> … | |
I have dropdown down boxes with multiselect; I'm using jguery to display Dropdown with multiselect; I'm populating Select Locality with Select City dropdown. Now, when I select a city from dropdown It should display its locality in dropdown with multiselect but showing localities in dropdown only. Code is attached in … | |
I have atext file but I want to pick a phone number from that file. How can I? is there any regex for this? How to write regex which gives output as 10 continuous digits (which will be phone number!)? Other things like what if +91 is addedd and all … | |
Hi, Been working on this PHP snippet and it was fine until I changed one line. I am doing this inside Wordpress so I can't echo the problems out. "Server error" Hopefull you guys can see where my snippet has gone wrong :)) <?php //Create connection //new mysqli("localhost", "user", "password", … | |
Hi guys. Okay, well I've been at this for a while and I cannot seem to figure it out. Basically, I have a simpleXML PHP file that I'm trying to"parse" (I guess it's called). *All I want to do is get some info from an API XML site and display … ![]() | |
| |
Hello all! i have here a code that will save the inputs in my database. but 'save' button doesnt work. please help. here is the code for the save button <?php define ('DB_NAME', 'try1'); define ('DB_USER', 'root'); define ('DB_PASSWORD', ''); define ('DB_HOST', 'localhost'); $link = mysql_connect(DB_HOST, DB_USER, DB_PASSWORD); if (!$link) … | |
Hello every one i want to send emails to other peoples. i want to do this. when i type any email adress in text field and when we click send button to send email to text field Email address. simply i want to send mail different email addresses. if any … | |
Hi friends, I have a drop down list which contains Country that i get values of country through store procedure Now i Have another combobox that have operators that also i have to get through store procedurebut one condition is that when i select country i get only operators of … ![]() | |
can any body provide me with a simple example of how insert and retrieve pictures along with text from mysql, kinda like when you post something in craigslist u add information about what ever you are selling and pictures, i would appreciate it, thank you in advance. ![]() |
The End.