- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 2
- Posts with Downvotes
- 2
- Downvoting Members
- 2
43 Posted Topics
Hello and thank you in advance for any help that can be provided. I am fairly new to PDO and am starting my first development project using PDO. I am tryin to insert three form field values into a database. However one form field is an array. The insert will …
I too am getting the "Sorry, could not log you in. Wrong login information." error. I've changed the password field to VARCHAR 25. Additionally, when I do the register.php page There is no error message OR THank you message. Can anybody tell me if they have been able to get …
Hello and thanks in advance for taking the time to look at this. I have an issue validating a Mailing Address form field. The problems is when users enter an address that has two sets of numerals. For instance; "12345 ABC Street Suite 200" will result in a validation error. …
Hello and thanks in advance to anyone who can help me with my array problem. I've always struggled with arrays, and now I Need to understand how I can use them to solve my latest problem. I've created a test scenario to recreate what I'm trying to do in real-life. …
Hello. I'm getting an undefined index error with the following code and I can't for the life of me figure out why. Any insight would be greatly appreciated. I'm using an html form and a PHP file to upload images to a directory and write the rest of the form …
Hello - I'm not sure what your db looks like, but you if your CategoryID is set as Auto-Increment you don't have to include it in your statement. I like to test my sql in something like Sql Query Browser before I try it in my application. Hth.
Hello everybody and thank you in advance for any suggestions and help I hope to receive. I have Mysql experience but now I am working on my first M$sql database project, and I am getting frustrated. I am using php and would like to export a query. It is quite …
Thank you in advance to anyone who can help this coldfusion noob. What I am trying to do seems easy enough but clearly I am having very serious problems. ;D I am trying to populate a pdf with data from a database. //Here is the page that lists all the …
Hi - Can you tell us what is happening when you run this script. It looks like it 'could' work, but I think we need to see the "delete" function you call.
What if you are in a car and not driving?
Sounds like you don't have administration rights to your "C:/ drive. Is there an admin where you are, or is this a personal computer?
Hi Nichito - I am new to mssql but am currently starting a new project using mssql and php. I learned that mssql_connect is no longer supported by M$ and they recommend using SQLSRV driver. You can Google sqlsrv to find the download. FYI - Additionally you must use a …
You will need to turn off IIS in your system settings in order to get Apache to run.
Hello everybody and thank you in advance for taking the time to read this. I am having trouble connecting to a remote MSSQL server from our web page server using the SQLSRV Connect. I have installed all the necessary php extensions and sql drivers, and they all appear as they …
Hello and Thanks in advance to anyone who can help me with this noob php query. I am trying to create a "share this record" tool in which a User can send another User a link to a record by displaying all the users in the User Table with a …
Hello everybody and thanks in advance for any help you can provide. I am currently working on transitioning a mysql project to mssql and php v 5.3.3 I am having trouble with [code] <form action="{$_SERVER['PHP_SELF']}" method="post"> [/code] when I look at the source code of a working page... Say login.php …
Nice. Could someone post an example of how to implement this?
Hello and thanks in advance to anyone who can help me with this problem. A publication went out to our field of users with a mis-typed urls and now all the visitors are landing on our 404 page. The problem with the published links is that the sub-directory [url]http://www.mysite.com/subdirectory/file.html[/url] was …
I'm fairly sure you can do it with only a few lines of php. something like [CODE] if($member='yes'){ echo"<label>Please Enter your Username</label><br><input type='username' name='username'>"; }else{ echo"the rest of the form"; } [/CODE]
Try this for 60% transparency /* for IE */ filter:alpha(opacity=60); /* CSS3 standard */ opacity:0.6; Change the number values for +- transparency. Notice there are two settings for two kinds of rendering engines.
Hi. Try this for your align right [CODE].alignright { float: right; clear:both; }[/CODE]
hello and thank you in advance to anyone who can help me with this problem. I've scoured the internetz for a while trying to find a solution to what must be a common question, but I can't find anything that relates to what I am trying to do. I have …
Hello. I am having trouble with a count col query I hope some one can help me with. I have six questions and I would like to count how many "yes" answers in each col and then group by that col. Here is my schema table:survey ||id || Q1|| Q2|| …
Hello and thank you for taking the time to read my question. I am currently moving a static html site into a faux CMS and have a question about which direction is best recommended. I have series of 'News Articles' that I would like to make available through a db. …
Hello everyone, and thank you in advance for any tips you may be able to provide. I am hoping there is a way to do paging with static html content with php? I have to redesign a very text-heavy site and would like to limit the page lengths of the …
Hello, Thanks in advance to anyone who can answer this question. Can I record a users ip address without them logging into my site? I have a list of documents that I would like to make available and would like to get an idea of who may be viewing them. …
Could it be the "." at the end of the 'Could Not Connect' sentence?
Yes. Beanboy is correct. The difference between Checkboxed and Radiobuttons is that Radio Buttons only allow you to select one from each category. You can read about it [URL="http://www.useit.com/alertbox/20040927.html"]here[/URL]
You can do it with PHP. IF you embed php in your html files it is quite easy. Google email with php and you should find a pretty comprehensible tutorial.
Or wrap your content with [code=html]<html> <head></head> <body> <div align='center'> All of your Content here </div> </body>[/code]
I'm not sure what you mean. Are you asking how to display sql data in a HTML table? Or would you like to display graphs and charts based on your sql data?
Can you be more clear with your question? There are a couple of ways to collect a users information when they visit a website. You could start with an html form. What information would you like to collect?
Have you checked your php.ini file for max-size-upload? Could it be that is set for a very small file size.
Hello, thanks in advance to anyone who can help me with this query. What I am trying to do is to retreieve a list of all the users from the table 'users' and count how many posts the user has made. The code below will shows a list of users …
Hi, Thanks in advance for any help someone could offer. I'm trying to display a list of stories submitted to my site from a table titled stories, the name of the person who submitted the story and how many comments about the story have been posted. I'm working with three …
You know I agree with Zachery fully, but unfortunately my job required that all our pages pass the W3c validator and I tell you, I wish I had too much time on my hands. My big problem right now is a PHP site that calls a header page as an …
Thanks in advance for anyone who can help me with this query. I want to select all from table one and the matching image from table two. Using the following inner join query works great: [code] $result=mysql_query("SELECT * FROM members inner join avatars on members.user_id=avatars.user_id where members.user_id ='{$user_id}'");[/code] but if …
Hello - I'm new to inserting checkbox arrays into mysql tables. After scouring the web for two days I've found a solution using 'foreach', and it is inserting the data into the table correctly however I'm getting the following Error Notice. "Notice: Array to String conversion on page blah.php on …
Hi. I'm trying to search multiple DB fields with a Select Menu and I don't know where to start. for example, from the code below I would like the value ='strAuthorname' to actually search the fields 'AuthorFirstName' AND 'AuthorLastName'. [code] <form method='post' action='{$_SERVER["PHP_SELF"]}'> <!--select tag --> <select name='metode' size='1' > …
Hello and thanks in advance to anyone that can help. I trying a simple password recovery script that emails the password after a registered user enters their email. For testing purposes I have been able to get the variable to display on the page after submission, but the email that …
Thank you in advance to anyone who can solve this for me. In a registration form of mine the user selects the state they live in with a drop down menu.
Thank you in advance to anyone who can answer this for me. In a registration form of mine the user selects the state they live in with a drop-down menu. In the 'Update' form I would like their previous choice to automatically display its selection. For example if my profile …
The End.
dottomm