User Profile
Collapse
-
stepterr replied to How to fix error "ADODB.Recordset (0x800A0CB3) Current Recordset does not . . ."?in ASP ClassicHave you verified that you have permission to update the database? -
It depends. Both are fine to use and there are a couple of differences.
Sometimes people will use *.inc and then modify their server configuration so that *.inc files cannot be accessed through the web. But you could accomplish the same thing by just not including those files in your document root. Another reason could depend on how your server is setup. If you are setup to only parse .php files then an .inc could be viewed in its...Leave a comment:
-
You could use the "@" for error suppression and then use die() to display the message that you'd like to be shown instead. There are some negatives to this though so you may want to read up on that. You should probably also look into changing display_errors to off in your php.ini.Leave a comment:
-
Shouldn't
Code:Request.Form("Certify")
Code:Request.Form("DropDownListcofc")
Leave a comment:
-
Try and enable the display_errors option in your php.ini. That may help you narrow down the issue since it could be a number of different things.Leave a comment:
-
Temp tables exist for your current client session but should terminate when you close your session. If you want them to be removed during the same session you'll have to manually delete them. To remove them you'd just use a drop statement.Leave a comment:
-
Most browsers block against setting the value attribute on input type file for security reasons so that you can't upload a file without the user's input.Leave a comment:
-
-
Just create a form with the textbox so when its submitted you can grab the $_POST value and assign it to your variable $foldernameLeave a comment:
-
Have you verified that the driver is installed on the new server?Leave a comment:
-
Looking into how to link the databases. Here's a link that may get you started. http://itc.virginia.edu/desktop/web/mysql/msaccess.htmlLeave a comment:
-
Adding a ")" will get rid of the error but I think you'll still have a problem because you are trying to cast to a varchar(2) and it should be varchar(4).
Here's the code for your where clause:
Code:CAST(DATEPART(YYYY, GETDATE()) as varchar(4)) + '/' + CAST(DATEPART(m, getdate())-1 as varchar(4))
Leave a comment:
-
Here's an example of the syntax.
Code:ALTER TABLE Customer ADD PRIMARY KEY (SID);
Leave a comment:
-
waqasahmed996,
Do you have a user table in SQL Server just like you do in MySQL. Or are you trying to do this in the SQL Server Login Properties for the SQL Server Authentication?Leave a comment:
-
A session is exactly how it sounds, it keeps track of each users session on your site and is valid for that browser session. If userA logs in then for them $_session['username'] = userA . If userB logs in, $_session['username'] = userB for them. If you want to test this try logging in using Firefox with one username and then log in using a different browser under another username and you'll see how it will work....Leave a comment:
-
You'll want to take a look at the MultiCell function. However, if you do not want all cells in a row to wrap their text you'll have to manipulate things a little bit.Leave a comment:
-
You have a couple options.
1.) meta refresh
2.) using javascript with onload (here's an example of that)
3.) or submit the page to an intermediate page first that has your message on it.
there are other options but those are the three I've done depending on the situation.Leave a comment:
-
stepterr replied to problem in direct user to the other page in middle page with having html tags in pagein PHPOranoos,
Be sure that you do not have any text sent to the browser before your redirect, or it will not work.Leave a comment:
-
jeff3188,
Google searches are your friend. Its probably best if you try it and then let us know what trouble you are having and we can offer some assistance that way.Leave a comment:
-
It's been a long time since I've done this but sounds like you may need to use a ReDim Preserve.Leave a comment:
No activity results to display
Show More
Leave a comment: