38,020 Topics

Member Avatar for
Member Avatar for amith_ami

hi all... i'm doing a wordpress jobsite... now its searching only jobs from the backend but i also want to include search results from the jobsite indeed.com on my result page... i use the api of indeed.com to fetch the jobs and its showing jobs in the home page..... but …

Member Avatar for pritaeas
0
222
Member Avatar for sandeepek

I am trying to make a website which support mp3 downloading. I don't have any idea with this. I just tried like uploading image , in that I can store mp3 files into database and from there I can move that file into specified folder. I don't know here I …

Member Avatar for sandeepek
0
220
Member Avatar for ero100@live.com

HI, HE IS MY FORM, I WOULD LIKE TO THE PHP CODE TO : DISPLY A MESSAGE IF THE ONE FIELD OR OTHER IS EMPTY, [code=html]<form id="form1" name="form1" method="post" action="form.php"> <label> NAME: <input type="text" name="name" id="name" /> </label> <p> Address: <label> <input type="text" name="address" id="address" /> </label> </p> </form>[/code] THANK …

Member Avatar for diafol
0
238
Member Avatar for jrotunda85

I am trying to secure a folder within my site by forcing an HTTPS connection when anything in this folder is run (the folder contains a series of scripts that process registrations, password resets, etc). What's the easiest way to accomplish this?

Member Avatar for pixelsoul
0
179
Member Avatar for garyrichard

Firstly Thanks in Advance.. I am trying to store an image in BLOB form into database and want to show that image on browser on retriving it from database.. Code used to convert image to blob is given below.. `ini_set('display_errors', 'On'); error_reporting(E_ALL); $img=file_get_contents("$_file[tmpname]");` but i am not able to display …

Member Avatar for veedeoo
1
248
Member Avatar for javacle

Hi guyz, i'm working on a site, and i need some help on a php code for advanced file reading. I need to implement a php code that will intelligently read the contents of a file. When users upload the required type of file to my website, it will read …

Member Avatar for veedeoo
0
197
Member Avatar for ferdinandmucos

I have this text file that contain questions and their respective four multiple answers, when I try to display them in html form, the diplay only contains three multiple answers and not four. this are the codes: Text file: $string = 1) The most important feature of spiral model is: …

Member Avatar for paulkd
0
197
Member Avatar for ivanichi

Assuming i have $a='1024,1025,0000|1020,0000|'; $b='1024,1025,0000,1020,0000,'; i want replace commas (,) in $b with (|) so that $b is equal to $a like this $b='1024,1025,0000|1020,0000|'; if i use $ob=str_replace("0000,","0000|",$b); echo $ob; output works : 1024,1025,0000|1020,0000| But, how to make it with PHP where did i put that this refers to the …

Member Avatar for ivanichi
0
255
Member Avatar for OsaMasw

hello there thanks for help mke in many questions, I've learened a lot from this great community I have question about creating visitor counter,daily,monthly,yearly I've created a counter depending on IP address but all my costomer are in the same IP so this counter will not be accurate, So I …

Member Avatar for OsaMasw
0
2K
Member Avatar for Carpetfizz

Hello! I have PHP and mySQL set up on a server, and everything works fine. I am able to connect to the SQL database successfully, etc. However, I want to set it up so that a user enters their "ID" in an input box. Then, the php script will return …

Member Avatar for diafol
0
181
Member Avatar for Squidge

Hi All, I am using pritaeas found here: http://www.daniweb.com/web-development/php/code/430455/configurable-table-class I am pulling in the data and my brain has taken a vacation. I am using $arr = $dsn->getRecord('memeber', array('user_id' => 2)); But cannot for the life of me pull the data out. I get duplication as well from the data: …

Member Avatar for pritaeas
0
147
Member Avatar for Xufyan

Hello, I am having trouble fetching content from a web-page, actually i wanted to fetch all the inner text from div name 'displaybody' but my code doesn't seems working, it is fetching all the content of the page and after 4 page successfully fetched i get an error, [CODE][B]Fatal error: …

Member Avatar for LastMitch
0
185
Member Avatar for sathishbabu.boopathy

In my app, im using a small form created dynamically by a jquery to upload files to server. This is working perfectly in FF and chrome. the issue is that im getting $_FILES as empty to my upload php. The file im trying to upload is a Zip file which …

Member Avatar for LastMitch
0
334
Member Avatar for OsaMasw

Hello guys today when i checked my script I noticed my sessions are not protected, when user log in his **username** stored in session variable lets call it $_SESSION['user'], and I use this session variable in many function ex. when uploading a file the name of user taken from session …

Member Avatar for LastMitch
0
205
Member Avatar for davy_yg

image_gallery <?php $i=0; while ($data = mysql_fetch_array($result)){ $result2=($i%2)?'#DFA09D':'white'; echo "<tr bgcolor='$result2'>"; echo '<td>'.$data['image'].'</td>'; echo '<td>'.$data['path'].'</td>'; echo '<td>'.<img src="photos/image".$i>.'</td>'; echo '<td><a href="admin.php?mode=delete&id='.$data['id'].'">Hapus</a> |<a href="input_image.php?id='.$data['id'].'">Edit</a></td>'; echo '</tr>'; $i++; } ?> What is this: Parse error: syntax error, unexpected '<' in C:\xampp\htdocs\Bread\administrator\image_gallery.php on line 153 line: 153 echo '<td>'.<img src="photos/image".$i>.'</td>';

Member Avatar for Squidge
0
101
Member Avatar for Angle90

Hello Again, Can you please tell how to create a serverside self extracting zip file. I really need this for my project. Thank you in advance and I am really grateful for all your helps.

Member Avatar for TonyG_cyprus
0
278
Member Avatar for Vijaysurya

i need help in following query, how to check this email alreadyexist in our db or not. var_dump($email); output: array(2) { [0]=> string(22) "xxxx7@gmail.com" [1]=> string(19) "yyyyy@gmail.com" } foreach($email as $em) { $sql = "SELECT * from sf_guard_user sf,personal pi where pi.user_id = sf.id and sf.email_address = '$em' "; $query …

Member Avatar for jkon
0
279
Member Avatar for LastMitch

Hi I'm not sure what to used to split numbers and letter from words. So far I try **preg_split()** function and also **mb_split()** function both gave me **No ending delimiter ^** There is **^** (**caret**). For example my data is from my database and it's not an array and it …

Member Avatar for LastMitch
1
522
Member Avatar for GlenRogers

Hi, I need help here. I have a for with multiple text inputs. input1 is link, input2 is description. This is repeated a number of time. Each link and description is one record, but I cant igure out how to add them to mysql as such. If I fill in …

Member Avatar for GlenRogers
0
325
Member Avatar for arigo32

Hi, am new in the forum. Please I need help concerning a hotel booking system am developing. The problem is when custumer wants to make room choice it can only allow 1 type of room when the available room information loads. If a customer wants to book 2 or more …

Member Avatar for Webville312
0
221
Member Avatar for joshl_1995

Hello Community, I was wondering if there is a way for a string ($string) to be remembered on a form submission? Example: <?php $f = ""; $tS = ""; if (isset($_POST['tSubmit1'])) { if (!empty($_POST['tString1'])) { $tS = $_POST['tString1']; $f = "f2"; } } if (isset($_POST['tSubmit2'])) { if (!empty($_POST['tString2'])) { if …

Member Avatar for Webville312
0
207
Member Avatar for EvolutionFallen

A client of mine wants to implement SSL on their site. They have a number of forms which communicate sensitive/personal information, and want to send the data over a secure channel. I've worked with sites that have SSL certificates already, but never actually implemented one myself. The site runs on …

Member Avatar for EvolutionFallen
0
364
Member Avatar for davy_yg

Hello, I wonder why when you try to when you try to update location (lokasi) to Product1 it always saved as Home ? input_berita_static.php <?php include('../includes/koneksi.php'); $id = isset($_POST['id']) ? $_POST['id'] : ''; $confirmation = isset($_POST['confirmation']) ? $_POST['confirmation'] : ''; $kategori = isset($_POST['kategori']) ? $_POST['kategori'] : ''; $news = isset($_POST['news']) …

Member Avatar for pzuurveen
0
152
Member Avatar for Kmhnz201

Hello, I'm trying to update a database using php. I have to add patient id in the format of 'p99' and if it reaches the highest number it should go to the next alphabet like 'q01'. I have this piece of code but it doesn't seem too be doing the …

Member Avatar for broj1
0
309
Member Avatar for games1124u

Hello i dont know how to echo from one table row ( table row name title ) id | id_publisher | **title** | price |......... so what i want is to echo title and how many games like **Exaple:** surrounded with ( ) is how many i have. Call of …

Member Avatar for pixelsoul
0
171
Member Avatar for shakayu

Hello friends :) I would like to get a help once again.. I need to make reports in php with Codeigniter then be able to print it.. Like *list of people who are hasnt yet settle payment* I know..its just a query...but how to turn that a report and give …

Member Avatar for broj1
0
179
Member Avatar for GlenRogers

I have an html form that has 10 text field for trhe user too enter dates into. When the user clicks the submit button each text field should be added as a new record to a mysql table. The way I have it now if only 2 are filled in, …

Member Avatar for GlenRogers
0
156
Member Avatar for deepak.fugo

Hi All, we have built web site in PHP, Mysql Database and Apache web server. Site is running fine on localhost(Window) but when we try to deploy it on our test environment (ubuntu 12.04.2 platform) .htaccess is not working. I am not getting any error like 500 Internal server error …

Member Avatar for cereal
0
342
Member Avatar for jLamp

Dear Friends, I wants to know something. Imaging there are two Text Boxes call, X & Y(Retrieving data from database). When user select one value in X, i wants to display a values of X in Y according to the database without loading page (using ajax) How to I do …

Member Avatar for jaycob15
0
100
Member Avatar for ivanichi

i want change one word from some of the same words with respect to the position of (the first second or third) example : $string = "He had had to have had it."; echo preg_replace('/had/', 'SSS', $string, 1); output : He SSS had to have had it. i want -->: …

Member Avatar for ivanichi
0
302

The End.