236 Posted Topics

Member Avatar for ziaimran

I suggest you learn some SQL. You can get a start [URL=http://dev.mysql.com/doc/mysql/en/tutorial.html]here[/URL]. I'm sure if you make a post in the [URL=http://www.daniweb.com/techtalkforums/forum16.html]databases[/URL] section, someone there will have other sources of knowledge to point you to. GL :)

Member Avatar for DanceInstructor
0
101
Member Avatar for venetian_jigsaw

[HTML]<input type='radio' name='temp' checked='checked' value='Celcius' /> Convert to Celcius <br> <input type='radio' name='temp' value='Fahrenheit'/> Convert to Fahrenheit<br><br>[/HTML] The above means that you need to look for the post variable 'temp' like so: [PHP]$convTemp = $_POST['temp'];[/PHP] Then whenever you reference $convTemp: [PHP]if($convTemp == 'Fahrenheit') { do stuff } if($convTemp == 'Celcius') …

Member Avatar for venetian_jigsaw
0
153
Member Avatar for zeroth

To take a screenshot just hit your PrtScn key. Then open some graphics program (like Paint in Windows) and do paste. The image will be copied and you can save it as a file and then upload for all to see.

Member Avatar for zeroth
0
199
Member Avatar for laguna915

Does you page have any output at all? If not then try moving the script from the head to inside of the body tags. [EDIT]BAH! I just realized the origional post is over a month old :([/EDIT]

Member Avatar for DanceInstructor
0
157
Member Avatar for hmitch2
Member Avatar for DanceInstructor
0
70
Member Avatar for goingbackwards

Do you want to track this info with software on a web server or with software on the user's computer? If on a web server then php should be able to (as long as pages browsed are on that particular webserver). If on the user's computer then you need to …

Member Avatar for DanceInstructor
0
101
Member Avatar for Blade10878

You uploaded the images too right? If the images are in a folder lets say called "images" on your computer, you must also have an "images" folder on the website.

Member Avatar for Blade10878
0
207
Member Avatar for asleep@the_keys
Member Avatar for DanceInstructor
0
372
Member Avatar for IT2005

Sometimes bad syntax in your httpd.conf file (config file) can cause apache to crash.... Try starting over with it maybe.

Member Avatar for DanceInstructor
0
313
Member Avatar for amuarica

I might be wrong but this post would probably be more appropriate for the c++ forum (or some similar language) or maybe the networking forum.

Member Avatar for DanceInstructor
0
112
Member Avatar for Ben501wh

Depends, what scripting languages are available for use on your webserver?

Member Avatar for DanceInstructor
0
159
Member Avatar for greenhorn

[QUOTE=greenhorn]do you think blogspot ppl are not allowing me to do this[/QUOTE] Hmm I doubt it. I was able to find other blogspot sites in google... I would submit a support ticket to blogger.

Member Avatar for greenhorn
0
203
Member Avatar for DanceInstructor

I was checking the cpanel for my website and saw this as a referer: [CODE]http://search.msn.com/results.aspx?q=western+dance&first=11&count=10&FORM=PORE[/CODE] Does this mean that someone performed this search and then actually came to my site? Or will this type of thing show up whenever someone enters a search that my site is listed under? Please …

Member Avatar for OurNation
0
172
Member Avatar for steveneven
Member Avatar for new comer

You can try these: [URL=http://www.phpbuilder.com/]PHP Builder[/URL] [URL=http://www.spoono.com/]Spoono[/URL] [URL=http://px.sklar.com/]PX[/URL] and of course: [URL=http://www.php.net/]PHP: Hypertext Preprocessor[/URL] Have fun :cheesy:

Member Avatar for DanceInstructor
0
161
Member Avatar for pcars

Maybe you could add a news box somewhere near the top of your page with a link back to a forum topic for viewer input, doesn't have to be big, or bulky. Every so often post something new in it that might spark discussion, maybe even something a lil' inaccurate …

Member Avatar for pcars
0
184
Member Avatar for hollystyles

Is there a way to make substitutions? I know nothing of xslt, but you want to substitute a <br /> tag where ever the style sheet encounters the &gt; If you are generating the xml yourself, you might try this: [CODE]<text> <table> <tr> <td>a less than</td> <td>a greater than</td> </tr> …

Member Avatar for tgreer
0
329
Member Avatar for yni420
Member Avatar for anandgagrawal
0
134
Member Avatar for DanceInstructor

Don't know if this happens to anyone else or not, but sometimes the ads near the top of the page will double overrunning parts of the page. This has happened in firefox 1. and firefox 1.0.1. See the attachment if you don't understand. Dance

Member Avatar for Dani
0
211
Member Avatar for tom2169

In your phpMyAdmin folder there is a file called: config.inc.php. Open it in a text editor(if the text looks funny try wordpad or some equiv) and look for the following: [PHP]$cfg['PmaAbsoluteUri'] = ''; $cfg['Servers'][$i]['host'] = 'localhost'; // MySQL hostname or IP address $cfg['Servers'][$i]['auth_type'] = 'cookie'; // Authentication method (config, http …

Member Avatar for DanceInstructor
0
132
Member Avatar for DanceInstructor

Hi I have a couple of harddrives (same model) that I have put in a striping array. In Nero you can go to File->Preferences->Cache, about the middle of the dialogue there is a way to test drive speed. When I look at the drive speeds like this in Nero the …

0
71
Member Avatar for omw
Member Avatar for androstendione

What version of mysql?? If it is new and php is not new, you might try starting the mysql server with the option --old-passwords. If you use mysqladministrator (gui) you can choose the old passwords option under the security tab. You can read about it in detail here: [URL=http://dev.mysql.com/doc/mysql/en/old-client.html]A.2.3. Client …

Member Avatar for androstendione
0
405
Member Avatar for choky

I think this might help: [URL=http://us4.php.net/manual/en/ref.dio.php]PHP: Direct IO Functions[/URL] Dance

Member Avatar for hollystyles
0
777
Member Avatar for ruffy
Member Avatar for DanceInstructor

Can someone explain to me the purpose of the arrows that show up to the left of the forum titles on the index? They seem to be related to recent posts, but there are times I will see one next to a forum that I have already read all the …

Member Avatar for OurNation
0
143
Member Avatar for RobL

Hopefully the host that charges more is providing a much better server and really high bandwidth...... As Gary noted mysql is open source and free to use. My suggestion is to rent a dedicated server and load what you want on it :) Dance

Member Avatar for Gary King
0
231
Member Avatar for ep2002
Member Avatar for ep2002
0
78
Member Avatar for cb2

You could also try [URL=http://relativelyabsolute.com/spg/]Simple PHP Gallery[/URL]. I use it on my site. It is fast (uses caching), and auto generates thumbnails. No integration with vbulletin or phpBB, but can integrate with Wordpress if I am not mistaken. Dance

Member Avatar for cb2
0
159
Member Avatar for Stick

I don't think that can work the way you want it to. Instead of trying to execute details.php in your script, include it and call functions from it. Now your code would probably better formed like this: [PHP]$result = mysql_query("SELECT * FROM customers WHERE username='$user'and password='$pass'",$db); $myrow = mysql_fetch_array($results)); if($myrow) …

Member Avatar for paradox814
0
88
Member Avatar for techie

Contact your host to set up a cron job or if you have the option in your cpanel set it up yourself (for a linux server). If you have a windows based server you will need to use task scheduler. Dance

Member Avatar for DanceInstructor
0
94
Member Avatar for junvalasek

Hmm looks like your permissions are wrong. You will need to use chmod to give the webserver access to the files in your script. Chmod 755 will probably be good, if that doesn't work go 777. If you use a ftp program you could try right-clicking on the file on …

Member Avatar for DanceInstructor
0
167
Member Avatar for kevin_smithers

So... you realize you are trying to use 2 databases?? for command == "init" you have: mysql_select_db("kevinsmi_game") for command == "update" you have mysql_select_db("game") As far as the table: db name: kevinsmi_game table: game field1: players field2: scores field3: distances field4: victims

Member Avatar for kevin_smithers
0
231
Member Avatar for soulz

This would work for an apache server. Go to the apache/conf directory or wherever the apache httpd.conf file is, open it and add this to the file. This would forbid access to any php files in that directory. I'm sure there is another way to do it, but I don't …

Member Avatar for DanceInstructor
0
107
Member Avatar for Robert Paulson

The portal page loads pretty quickly for me, especially after the first time. So it seems to me the portal is not too slow. I suggest you start a poll on the forum to see what your members think.... If you really wanted to make sure it is fast, you …

Member Avatar for DanceInstructor
0
151
Member Avatar for Luckasoft
Member Avatar for DanceInstructor
0
164

The End.