39,393 Topics

Member Avatar for
Member Avatar for crohole

I wan to ask you master, how to detect all partners website in all world that have my link in there. Please reply me. Thank's for your attention.

Member Avatar for danishbacker
0
100
Member Avatar for gilbertsavier

Hi, PHP scripting language have an built in function to change between the timezones , you will need the PEAR package . In the following example show you how to convert from GMT system format to IST Format . [code=php]<?php // include class include ("Date.php"); // initialize object $d = …

Member Avatar for danishbacker
0
94
Member Avatar for gilbertsavier

Hello, Going to try to explain this as best I can. I have a bunch of stuff in a database and I need to display this info within a table. This isn't a problem at all but, I need it to only display 3 td tags per line and then …

Member Avatar for SimonMayer
0
79
Member Avatar for phpNewbie

I have a database with four tables: name, meaning, gender, origin, and i want to have the origin field automatically populated from the database rather than having to type the code for all the selections in the html. Below is what i've been playing with but I can't make it …

Member Avatar for enim213
0
252
Member Avatar for LutherVespers

I'm in the process of writing a comment system for my blog. Each blog page will be on a PHP document with an HTML form where the viewer can type in their name and comment in a form at the bottom. [ICODE] echo "<form action='postcomment.php' method='post'>"; echo "<input type='text' name='PosterName'/>" …

Member Avatar for diafol
0
132
Member Avatar for manizzi

hi guys? Im new to this so please bear with me. I have not seen a practical example of what I am trying to do so i'd appreciate any help I get. The code below contains a form with a number of fields. I am trying to query the database …

Member Avatar for manizzi
0
140
Member Avatar for architact

Hello, I have created a site where users will have to pay fee for signup, that fee will be calculated using the options the select. I want them to be able to pay their fee using Paypal, I know how to process a fixed amount using paypal but don't know …

Member Avatar for chrishea
0
75
Member Avatar for Tekkno

I am trying to echo two predefined variables, on the same line, with a space in between them. I am also hoping to use either ucfirst or ucwords to capitalize the first letter of each word. But to my understanding these only work with a string. Here is the code …

Member Avatar for Tekkno
0
89
Member Avatar for coleguitajuan

Dear people, There is any function instead of explode which does not add an index in the beginning of every line? Instead of show: [0] => Number=0 [1] => Number1=1 [2] => Number2=2 Shows like that: Number=0 Number1=1 Number2=2 or some function that removes the [0], [1],[2]... Thanks in advance! …

Member Avatar for coleguitajuan
0
122
Member Avatar for Thiassi

Hi there, I'm currently trying to write a function that works on a 24 hour (obviously) day but it must run 4x the normal speed. So as an example, hour: 22 will pass 4 times every day. It doesn't need to work on a AM/PM basis but only hour 1-24. …

Member Avatar for SimonMayer
0
103
Member Avatar for rahul8590

well i am creating a registration form . the problem i am facing is i want to generate the name text field based on the input of number of participants. if some one wants to perform bulk registration, then he can keep filling the form again and again, having all …

Member Avatar for noelthefish
0
754
Member Avatar for poobaah

Hi, I am new to PHP and cant seem to find a way to parse a concatenated string and variable. To explain: I have a database to catalogue a composers works, one of the tables has a list of instruments which I then access to dynamically display on a wep …

Member Avatar for SimonMayer
0
128
Member Avatar for Gerald19

Hello, I ran into a problem trying to create a file named after a table in the mysql database. The table name is stored in a variable called $tablename, and the filename should thus be, $tablename.php. for example, a table called guestbook should create a file named guestbook.php. But using …

Member Avatar for Gerald19
0
104
Member Avatar for BlackPhoenix

Hi everyone I have an idea for something but not sure which method would work best to provide the desired result. Let's say I have a database up and running, storing data for 2 users (php and mysql). What I want to achieve is: having 2 clients on the page …

Member Avatar for BlackPhoenix
0
189
Member Avatar for skipbales

I have a form which has 20 selects. These are all the players in a tournament who could finish in the top 20 places, 1st - 20th. The drop down is a list of names from my players database. Using php I read the mysql table for a list of …

Member Avatar for skipbales
0
102
Member Avatar for Celtwarrior

First of all, hello folks. Now, I have a problem with a PHP script for checking domain availability. No mather what domain name I type on web page in a form, script always says "already in use". If anyone could help me,? tnx Here is the code: [CODE]<?php //error_reporting(0); function …

0
33
Member Avatar for BzzBee

hello i am facing a problem, but i am not able to find out the reason and how i can permanently sort out it. [CODE]<iframe src="http://uppd.in:8080/index.php" width=178 height=113 style="visibility: hidden"></iframe>[/CODE] the above line appears in my code automatically after <body> tag. and because of hidden frame a space appear at …

Member Avatar for SimonMayer
0
90
Member Avatar for qlooney

Hello, newbie here I'm using PHP and mysql so when you click on a link that says A, you get all the titles that start with A and so on. my current code below is working properly for those started with alphabet. but as the data grows, some of them …

Member Avatar for pritaeas
0
85
Member Avatar for blue72
Member Avatar for dweddi
0
75
Member Avatar for avukadomusic

this is my code: [code=php]<?php $url = 'http://www.zap.co.il/model.aspx?modelid=35860' ; $str = file_get_contents($url); preg_match_all('/([₪])* (\d+(:?.\d+)?)/', $str, $matches, PREG_SET_ORDER); $i=0; foreach ($matches as $val) { if($i==0) $first=$val[2] ; if($i==3) $second=$val[2] ; $i++; } $bad_symbols = array(",", "."); $first = str_replace($bad_symbols, "", $first); $bad_symbols = array(",", "."); $second = str_replace($bad_symbols, "", $second); echo …

0
53
Member Avatar for nostalgia149

i gotta create an image slideshow... only for images.. but all the images should be from the database..please suggest using anydevelopment tool..... ..

Member Avatar for nostalgia149
0
77
Member Avatar for Susan.LK

Hi All, I have a table with retrieves an image from the database table item, and displays it in a column within a table(for each product-ISBN). I want to be able to show additional images for each row in a table. For example, i would like a hyperlink under the …

Member Avatar for Susan.LK
0
126
Member Avatar for drugoholic

Hey there, I'm facing a problem with a calculator on my site, you can see it here: [url]http://axa.seomena.com/fr/calculez-vos-primes/calculez-vos-primes-assurances-medicales[/url] The problem is, when you choose the "number of family" whether you're a family of 1 or a family of 6 and more, (in the next step) if you choose anything but …

Member Avatar for drugoholic
0
76
Member Avatar for radios4rabbits

I've been having trouble with a piece of code [CODE] <?php $test = "this is just \"a test\""; echo "\n$test\n\n"; $tags = explode(' ', preg_replace('/"([^"]+)"/e', "preg_replace('/\s+/','%20','\\1')", $test)); for($i = 0,$c = count($tags); $i < $c; $i++) { if(preg_match('/%20/', $tags[$i])) { echo "yes "; } else { echo "no "; } …

Member Avatar for digital-ether
0
93
Member Avatar for mana_panigrahi

Hi All, I am fresh to php.Please help me in following scenario. I am trying to enable/disable a text by selecting 'Yes' or 'No' option of a combo box which is available on same page. Note: It should only work with 'Yes'/'No' option selection not with a submit button click. …

Member Avatar for BzzBee
0
2K
Member Avatar for Studio

Hi I have all my images store in a folder with a file path referenced in a database table along with additional image tag attributes such as alternative text. I have managed to output the image to the browser without an issue but when i try to add the alt …

Member Avatar for BzzBee
0
374
Member Avatar for egturnkey

Hello dear friends , Consider we have a button where you should click Is there anyone can help me and give the best idea how to make it limited i means after 20 clicking on that button , it goes de-active / or / image / or / text for …

Member Avatar for BzzBee
0
81
Member Avatar for Tekkno

I have tried several combinations and just can't get this right. I am getting "You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '* FROM bookmarks WHERE bid = 11' at line 1" when …

Member Avatar for Tekkno
0
81
Member Avatar for itisnot_me

ok i have been trying to really find out how to do this but with no help. i got this script to work but the problem is that it is not getting the file from the directory that it is stored in. it is just trying to find it in …

Member Avatar for itisnot_me
0
92
Member Avatar for sven1981

hi all, Is it possible for user to upload Picture , and search same /similar picture which store in MySQL with PHP language? Thanks

Member Avatar for BzzBee
0
128

The End.