Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #2K
~31.1K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Forums

23 Posted Topics

Member Avatar for mithesh

you can make carriage returns work. HOWEVER you have to use I beileve is the pre tag. And that is kinda of messy at times. You're better off using a br tag. just keeping options open.

Member Avatar for prabhjots226
0
5K
Member Avatar for janzaldo

check your query. If you get the not supplied valid arguement, 99.9% of the time. the problem is in your query. Echo out your query and check it to make sure that is working properly. This can be done any place that you can free-form a MySQL query in your …

Member Avatar for sudhir1234
0
2K
Member Avatar for rcasinillo_s

I will agree that it is rare that you would want to do that outside of a data hosting site like that. Otherwise you can just store the url and output it however you want by calling it with php and tellting using the following code echo '<img src ="'.$imgurl.'">'; …

Member Avatar for metalix
0
4K
Member Avatar for f3dor4core

Use an if statement that wont succeed after the reload. Alot of my code uses redirects with that but they all go to the same page. I just use a variable set that helps stop it from getting to the redirect the second time. But it's all up to how …

Member Avatar for monstruo
0
11K
Member Avatar for acediamond

[code]<img style="border: 0px;" src="url" />[/code] use the style ability within most tags and use the CSS call to get rid of borders. if it still isn't working... .delete IE download firefox and try again on a real browser. Thank you.

Member Avatar for sreein1986
0
262
Member Avatar for antwan1986

Another option is to just get the information either the substr version from SQL ore the full length. and simply use the wordwrap function built into php that will break only at a space. [url]http://www.php.net/manual/en/function.wordwrap.php[/url] You can find the documentation for that function at that link on php.net. If you're …

Member Avatar for nav33n
0
2K
Member Avatar for shekhar52

Once again PHP.net has the answer. I believe you were wanting to return all the files within a directory, as the person above me stated this was not very easy to understand what you were wanting to do. [code]$d = dir("/etc/php5") while(false!==($temp=$d->read())) { $filesinfolder[]=$temp } [/code] This should return an …

Member Avatar for DGStudios
0
88
Member Avatar for DGStudios

[code] textarea { overflow: auto; } input { overflow: auto; } .background { background-attachment: fixed; background-repeat: no-repeat; background-position: center; z-index: 0; top: 0px; left: 0px; height: 100%; width: 100%; position:fixed; } .content { z-index: 2; top: 0px; left: 0px; text-align: center; position: absolute; width: 100%; } [/code] Okay I found …

Member Avatar for DGStudios
0
131
Member Avatar for nathanpacker

One thing you might try is to store you're query in a variable before putting it into the mysql_query() function. $query = "DELETE FROM employees WHERE recordid='$recordid'"; $results = @mysql_query($query); Mind You I used the storing of results. This is good practice as it allows for good error checking. I …

Member Avatar for nav33n
0
4K
Member Avatar for janaki07

It may be that the long string is disabled. I remember that certain array's like that started getting phased out in 4.0. Please refer to the following page for more information to get the commands that are more up to date. [url]http://php.net/reserved.variables[/url] sorry if this doesn't help

Member Avatar for Member #210412
0
149
Member Avatar for alamati

try even reading a little bit. Larry Ullman has a good beginnign book for both PHP and Mysql. "PHP and MySQL for dynamic Web Pages." It assumes you know html but that you've nevver programmed in your life. So its a really good teachign manual.

Member Avatar for jbennet
0
134
Member Avatar for jaikar

That is both correct and incorrect. The second page will NOT identify the session when it opens. However a session will NOT end until you tell it to end or it times out. Even if it is stored in a cookie. The purpose of using sessions is so that your …

Member Avatar for jaikar
0
132
Member Avatar for DGStudios

I have a fully written forum and I would like to add some code to identify all the active users that are logged on. Their names are stored in session variables. I would like to retrieve and process this data using php, for ALL active sessions. Not just the person …

Member Avatar for jaikar
0
67
Member Avatar for welbyobeng

Just another note. If that doesn't help and it doesn't seem to be that way with you. The FIRST thing that should always be looked at with that particular error, is the QUERY that you are trying to get the number of rows from the result. More often than not …

Member Avatar for DGStudios
1
262
Member Avatar for tester_geniusd

The skript is taking too much space or the files are taking too much space. If its the files, there may be a method to install a script for compression, but that is your only hope. If you are writing for a file server, your ONLY bet is to have …

Member Avatar for loanskey
0
135
Member Avatar for mrcb

Try putting a semi-colon after the query. If that doesn't work. take the semicolon out of the quotes of the query, its not needed in this. THe semi-colon is used in SQL to denote the end of the query, its not really needed when using php. It'll automatically end it …

Member Avatar for mrcb
0
294
Member Avatar for puddin

$sql_check = mysql_query("UPDATE members WHERE password='$password' AND email_address='$email_address'"); Where is your comand to update. You have the update command but not SET command to tell it what to update and how. You have it getting the tuples (records) but not updating anything. it should read UPDATE members SET (the update) …

Member Avatar for DGStudios
0
205
Member Avatar for puddin

Well the server owners are ALLOWED legally to edit your code. Check your code it is probably slightly different. I saw a few things that needed to be changed so I'm assuming they went in and fixed the code. My server has done the same thing with mine before. Its …

Member Avatar for puddin
0
147
Member Avatar for puddin

can you post the section of code where it finds out if you're logged in or not and does what its supposed to do with it. If I can look at the code I might be able to find the error causing it. If I can't find it in the …

Member Avatar for DGStudios
0
71
Member Avatar for yocool

I did a little digging and I haven't tested it so don't blame me if it doesn't work... I'm not an expert on Javascript... make a function that sets a variable equal to document document being the full thing page that is shown. then apparently there is a print() function …

Member Avatar for DGStudios
0
78
Member Avatar for chilllax

Look at the spot where you are declaring the value of $eaddress you have written $POST it needs to be $_POST keep in mind while debugging the line number is usually close depending on the error. Bad varriables like that are usually DEAD on. Also the simplest mistakes the ones …

Member Avatar for DGStudios
0
143
Member Avatar for Broomy

My suggestion is to hit the bookstore and look up Larry Ullman. His book on PHP and MySQL is an amazing book to teach you the language. It is very quick with the SQL teachings. So reading it helped me enough to build a Bulletin board. While my initial is …

Member Avatar for DGStudios
0
946
Member Avatar for rcasinillo_s

Try this code //note echo is the same thing as print... its preference on that. echo ' Name: <a href = "URL">'. $name .' '. $fname. '</a>'; Also note that a single quote will never interfere with the double quote in php, and vice versa. USE THIS TO YOU'RE ADVANTAGE. …

Member Avatar for DGStudios
0
155

The End.