39,388 Topics

Member Avatar for
Member Avatar for garyjohnson

I know there are other post conserning this but they dont seem to help me. When I run the varaible `$results` through the function `Mysql_num_rows()` it returns as an error saying its not a valid result. Also same for the `mysql_fetch_array()`. function results(){ if ($_POST['search'] != "") { $search = …

Member Avatar for garyjohnson
0
212
Member Avatar for richosr

Hi, I have an issue sending HTML mail with Yahoo Business Hosting. I developed a web site for a friend to raise quotes for their cleaning company. I tested everything on my two of my hosts and everything works fine, I have created similar mail scripts for other people and …

Member Avatar for LastMitch
0
393
Member Avatar for NagyAndor1995

Hi, I'm working on a simpla CMS. And I'd like to create a public function that calls up all the nessecery classes and functions for the theme to run correctly. And not sure if it is possible to create something like the following. function CMS_head() { $class1 = new class1(); …

Member Avatar for Martyn_86
0
148
Member Avatar for kingkong142

Hi, I am having error in following code, <!-- START --> <p class="date-head"> <?php $sql_online_mem = "SELECT membername FROM ` trade_messengerd` WHERE status = 'Online'"; $db_sql_mem = mysql_query($sql_online_mem); while($online_mem = mysql_fetch_array($db_sql_mem)){ $members_online[] = $online_mem['membername']; } for($o=0; $o<count($members_online); $o++){ if($members_online[$o] == $uid){ $mem_online = "Online"; } } ?> <a href="#" onClick="window.open('<?=$domain_url?>/messenger/members/_login.php','login','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,width=368,height=600,left=380,top=60');return …

Member Avatar for kingkong142
0
218
Member Avatar for eiramana06

Doe anyone here know the ascii code for the enter(newline)?? im not looking for the '\n' answer.. thanks..:)

Member Avatar for diafol
0
2K
Member Avatar for anony

Hello I am trying to load a select option depending on the value selected on another select option <select id="state" onchange="SelectValue();"> <option value="State1">State1</option> <option value="State2">State2</option> <option value="State3">State3</option> </select> <select id="district"></select> <script type="text/javascript"> function SelectValue() { var e = document.getElementById("mfr"); var Val = e.options[e.selectedIndex].value; } </script> I want to call this …

Member Avatar for AARTI SHRIVAS
0
146
Member Avatar for adishardis

I'm trying to get an xml file from an ftp and then insert select data into mysql db. I'm shooting in the dark but from googling this is what i've tried so far: $curl = curl_init(); $file = fopen("import.xml", 'w'); curl_setopt($curl, CURLOPT_URL, "ftp://company@company.company.se/company/import.xml"); #input curl_setopt($curl, CURLOPT_FILE, $file); #output curl_setopt($curl, CURLOPT_USERPWD, …

Member Avatar for adishardis
0
482
Member Avatar for adishardis

Hi, I, getting a new xml file everyday to one of our external ftp servers. I want to get that file and then insert select data into my mysql. What I'm thinking is that I would use curl to get the file, then simplexml and then insert into database. But …

Member Avatar for adishardis
0
219
Member Avatar for code_rum

Hi, Below is my ajax code along with html and php code. I am getting an error "title is not defined".. Ajax ------ function callAjax() { $.ajax ({ type: "POST", url: "get.php", data: "title=" + title, success: function(msg) { alert(msg); }, error: function(msg){ alert(msg); }, }); } HTML ------ <form …

Member Avatar for radhakrishna.p
0
396
Member Avatar for Bachu

Hai; How can I rewrite user profile page url like `http://website.com/firstnamesecondname-id` in wordpress ? Please help me.

Member Avatar for Bachu
0
109
Member Avatar for pucivogel

<?php mysql_connect("localhost", "root", "") or die(mysql_error()); mysql_select_db("agenda") or die(mysql_error()); $q = mysql_query("INSERT INTO kontakte (emri, mbiemri,e-mail,nr,adresa,shenime) VALUES( '{$_POST['emri']}' '{$_POST['mbiemri']}', '{$_POST['e-mail']}', '{$_POST['nr']}', '{$_POST['adresa']}', '{$_POST['shenime']}') "); if (!$q) { $message = 'Invalid query: ' . mysql_error() . "\n"; $message .= 'Whole query: ' . $query; die($message); } ?> <html> <head></head> <body> <div …

Member Avatar for urtrivedi
0
139
Member Avatar for ckjaseem

Hi all , I have googled for an answer for this question but most of them are so complicated. Can anyone suggest a simple article on this topic or show me step by step how to solve this. I want to upload an image to a folder and show this …

Member Avatar for LastMitch
0
664
Member Avatar for showman13

Good Morning... I hope this doesn't come across as too unintelligent, but I am baffled and maybe unnecessarilly I am implementing a payment processor and merchant account services on my members site. The processor has provided me with a host of API code for various functions and activities. Problem is …

Member Avatar for showman13
0
214
Member Avatar for garyjohnson

I am making a mysql query that gathers comments for a user, it works properly, I connect to the database and recieve the comments for a user, but it is not showing the first comment for the user. Here is the code function comments(){ //connect to db connect_db_members(); //start query …

Member Avatar for garyjohnson
0
307
Member Avatar for biddut.hossain.75

mysql_connect('localhost','root',''); mysql_select_db('db_enrollment'); <?php require('fpdf.php'); class PDF extends FPDF { // Page header function Header() { // Logo //$this->Image('logo.jpg',22,10,160); // Arial bold 15 $this->SetFont('Arial','B',15); // Move to the right $this->Cell(80); // Line break $this->Ln(20); } $result=mysql_query("select * from omr_result"); // Page footer function Footer() { // Position at 1.5 cm from …

Member Avatar for diafol
0
465
Member Avatar for daniel36

I am working on a project in which to show booking in caledar form is required.I myself build the calendar.it is showning the booking correctly in choosen color .but when i see calendar next months it shows booked from date 1 to date 12 booked every month .the main part …

Member Avatar for diafol
0
163
Member Avatar for Noth

Hi everyone. I'm trying to verify whether the variables $username and $password_recovery (both are unique - impossible for them to be the same) both come from the same row in the rable 'users'. This is the query I am using: return (mysql_result(mysql_query("SELECT COUNT(`user_id`) FROM `users` WHERE `username` = '$username' AND …

Member Avatar for urtrivedi
0
196
Member Avatar for McLaren

Hello, we are thinking about making module which will use video streaming from our server, php, database. We want to make it posible to integrate into any website as easily as posible. What would be the easiest way, how should I search information about this? I tried quick searching but …

Member Avatar for McLaren
0
139
Member Avatar for daniel36

I am workin on an project.in which i need to know in what order array is sorted after sortig using function sort($array);

Member Avatar for cereal
0
160
Member Avatar for Vincentas

Hi there, I just came to find out, storing a password in a plain text is a bad idea IF that password is only used for re-sending it? Let me put it this way, people register in your site, you can keep one hased password, lets say by md5() or …

Member Avatar for cereal
0
165
Member Avatar for dinhunzvi

i'm developing an app that i intend to run on a client's intranet. i want to ensure that only email addresses with the client's domain should be registered. how do i achieve this using regular expressions?

Member Avatar for dinhunzvi
0
164
Member Avatar for uurcnyldrm

Hi everyone, I need some resources, examples, or tutorials to be able to understand how to write a server in PHP which can communicate with MySQL database, and receive & send the desired information to the client from the database. If you offer some websites or books, I would appreciate. …

Member Avatar for uurcnyldrm
0
239
Member Avatar for daniel36

I am working on a project.In this i need to assign values in array with different location of code.first i used the $bd=array('1','420'); $bd=array('2','520'); etc.but when i echo $bd[1]; and echo $bd[2]; only last inserted value(520) is displayed.do you have any solution for it?

Member Avatar for daniel36
0
117
Member Avatar for varma51

in img2.php <form action="img3.php" method="post" enctype="multipart/form-data" name="uploadImage" id="uploadImage"> <p> <input type="hidden" name="MAX_FILE_SIZE" value="<?php echo MAX_FILE_SIZE; ?>" /> <label for="image">Upload image:</label> <input type="file" name="image" id="image" /> </p> <input type="hidden" name="MAX_FILE_SIZE" value="<?php echo MAX_FILE_SIZE; ?>" /> <label for="image">Upload image:</label> <input type="file" name="photo" id="image" /> </p> <p> <input type="submit" name="upload" id="upload" value="Upload" /> …

Member Avatar for varma51
0
134
Member Avatar for dinhunzvi

i have two tables the following structures. CREATE TABLE `tblbranches` ( `branchID` tinyint(3) unsigned NOT NULL AUTO_INCREMENT, `branchCode` varchar(30) NOT NULL, `branchName` varchar(30) NOT NULL, `regionID` tinyint(3) unsigned NOT NULL, `branchAddress` varchar(400) NOT NULL, `cityID` smallint(5) unsigned NOT NULL, `countryID` smallint(3) unsigned NOT NULL, `branchContact` varchar(50) NOT NULL, `branchFax` varchar(20) …

Member Avatar for dinhunzvi
0
191
Member Avatar for unikorndesigns

Hi guys, I am trying integrate piwik site analysis graphs with my web app. There is a way to represent the data from the locally hosted piwik in the webapp but it requires the user to log into piwik through its UI. I am thinking of integrating the piwik graphical …

Member Avatar for veedeoo
0
142
Member Avatar for Priti_P

Hello, If am entering data as "hi this is for test" as my input to <textarea> but while displaying it, it is giving me as one sentence . Help me out with this.

Member Avatar for Priti_P
0
159
Member Avatar for davy_yg

Hello I am trying to create a chart based on clicks information. How to do so ? // print jumlah klik dalam graphic $result = mysql_query("SELECT COUNT(idads) AS countidads FROM adsmgt") or die(mysql_error()); $resultday = mysql_query("SELECT COUNT(idads) AS countidadsday FROM adsmgt GROUP BY date") or die(mysql_error()); while($row = mysql_fetch_assoc($result)) { …

Member Avatar for davy_yg
0
145
Member Avatar for vizz

I need login with cookies to hide comment form, from user who are not logged in. Users can view article without login but can not comment without login **Database** CREATE TABLE IF NOT EXISTS `members` ( `id` bigint(12) NOT NULL AUTO_INCREMENT, `fname` varchar(500) NOT NULL, `lname` varchar(500) NOT NULL, `email` …

Member Avatar for vizz
0
308
Member Avatar for ckjaseem

I have got around 10 <div>'s and in every <div> there is a different datetime. I want to call a java-script function when the clients local time matches the time in that <div>'s. //sample scenario <div id="a" class ="help">2/3/2013 6:39:14 PM</div> <div id="b" class ="help">2/3/2013 2:39:14 PM</div> <div id="c" class …

Member Avatar for LastMitch
0
1K

The End.