Goto Page: 1, 2
Actual Results
- Ted
- Foro: Programming / Scripting / Coding Forum
- Tema: delete database records
- Subject: delete database records
- Respuestas: 7
- Vistas: 989
- Subject: delete database records
Posted: Junio 1st, 2007, 8:54 am
where the delete button is i changed and added this, [code]<SCRIPT LANGUAGE='JavaScript'> function confirmAction() { action=confirm('Click O.K to Delete or Cancel to exit') if (action==true) parent.self.location.href = '?cmd=Delete&jcode=$jcode...
- Ted
- Foro: Programming / Scripting / Coding Forum
- Tema: php 5.2.1 xslt problem
- Subject: php 5.2.1 xslt problem
- Respuestas: 1
- Vistas: 717
- Subject: php 5.2.1 xslt problem
Posted: Mayo 26th, 2007, 10:20 pm
I have spoke to the server administrators and they insist all php capabilities are enabled and am having trouble finding an explanation on-line apart from a few forum entries recognizing a problem. Put a page on your host and it should contain:
The out...
Código: [ Select ]
<?PHP phpinfo(); ?>
- Ted
- Foro: Programming / Scripting / Coding Forum
- Tema: Time
- Subject: Time
- Respuestas: 5
- Vistas: 785
- Subject: Time
Posted: Mayo 26th, 2007, 9:41 pm
So what would be the code for choosing between the times? I googled "javascript time zones" and found http://builder.com.com/5100-6370-6016329.html fairly quickly. There are lots of others. Ted: Java and JavaScript are two completely different languages. Your reference of ...
- Ted
- Foro: Programming / Scripting / Coding Forum
- Tema: Securing my webpages
- Subject: Securing my webpages
- Respuestas: 5
- Vistas: 694
- Subject: Securing my webpages
Posted: Mayo 24th, 2007, 7:47 pm
How do I prevent people from browsing the contents of my directories? Thanks. Are you on Apache or IIS? Are you the system administrator or just using a hosted web server? With Apache, the best thing to do is use a httpd.config parameter (for system admins) turn off browsing globally ... if you don...
- Ted
- Foro: Programming / Scripting / Coding Forum
- Tema: Time
- Subject: Time
- Respuestas: 5
- Vistas: 785
- Subject: Time
Posted: Mayo 24th, 2007, 7:28 pm
You know the code in javascript that shows the time. Is that the time right for the website or the person. I mean like some people live in other places, and have different times due to their timezones. What would the javascript show? That depends... you can use a JSP and generate the time in tUTC, ...
- Ted
- Foro: Programming / Scripting / Coding Forum
- Tema: Storing user Info / Logins
- Subject: Storing user Info / Logins
- Respuestas: 2
- Vistas: 709
- Subject: Storing user Info / Logins
Posted: Mayo 22nd, 2007, 10:41 pm
So for a while now I've been storing login information in a session varible. I read someplace that its a bad idea to store the real password of a user. Rather encrype that password and then check it against the encrypted one in the database. This way the only time the users password is every in its...
- Ted
- Foro: Programming / Scripting / Coding Forum
- Tema: Register/login
- Subject: Register/login
- Respuestas: 5
- Vistas: 1058
- Subject: Register/login
Posted: Mayo 22nd, 2007, 8:33 pm
do someone know how i can add members login panel to my website i want when someone is downloading somthing from my website they have to login first and then download it The simplest way to require a user to login is to use a .htaccess file under Apache ... then you may just need a process of some ...
- Ted
- Foro: Programming / Scripting / Coding Forum
- Tema: Multi programmer projects
- Subject: Multi programmer projects
- Respuestas: 3
- Vistas: 713
- Subject: Multi programmer projects
Posted: Mayo 21st, 2007, 11:05 am
Has anyone worked on a team of developers with more than one programmer? If so how do you manage your code to make sure people dont over write one anothers source? ... I found a cool tool to you when compairing source code to see what changes have been made, but Im not quite sure on how to go about...
- Ted
- Foro: Programming / Scripting / Coding Forum
- Tema: Password confirmation (php)
- Subject: Password confirmation (php)
- Respuestas: 4
- Vistas: 1239
- Subject: Password confirmation (php)
Posted: Mayo 20th, 2007, 3:49 pm
Order of operators? Whenever something isn't evaluating as you expect, you should add ( and ) to make your assumptions explicit. [php] if($_SESSION['regsuccess'] && $_POST['pass'] == $_POST['pass2']){ {/php] would be written as: [php] if($_SESSION['regsuccess'] && ($_POST['pass'] == ...
- Ted
- Foro: Programming / Scripting / Coding Forum
- Tema: need Help with SESSSION
- Subject: need Help with SESSSION
- Respuestas: 4
- Vistas: 717
- Subject: need Help with SESSSION
Posted: Mayo 20th, 2007, 3:21 pm
You mean encrypt? many ways to encrypt, but the simplest is probably just to use MD5(password) == "<my password in MD5>". MD5 is one way -- it can't be reversed so they can't determine the original password. Another one-way function is Crypt() -- quite secure and used for encrypting ...
- Ted
- Foro: Programming / Scripting / Coding Forum
- Tema: What programming/scripting languages do you know?
- Subject: What programming/scripting languages do you know?
- Respuestas: 590
- Vistas: 55670
Posted: Mayo 20th, 2007, 1:39 pm
hhhmmm... C++/C and C# Java and Javascript VB 6 and some ASP/ASP.NET Delphi/Pascal xHTML CSS PHP Perl Several Unix shells for scripting (ie. Bash and CSH), Awk, SED, expect VBA (Microsft Office suite) Basic, RealBasic, and the like. Cobol Several small "custom" scripting languages SQL for ...
- Ted
- Foro: Programming / Scripting / Coding Forum
- Tema: CDOSYS Error
- Subject: CDOSYS Error
- Respuestas: 1
- Vistas: 971
- Subject: CDOSYS Error
Posted: Mayo 20th, 2007, 1:15 pm
CDO from a server application has issues. Did you set up a mail (MAPI) profile for the web server? You need to login as the web server , run outlook and configure the mail server access -- you probably need an email account for the web server, too. Without this step, the CDO has no idea how to find ...
- Ted
- Foro: Programming / Scripting / Coding Forum
- Tema: using include tag
- Subject: using include tag
- Respuestas: 16
- Vistas: 1283
- Subject: using include tag
Posted: Mayo 20th, 2007, 12:48 pm
can anyone tell me the reason when I use include to call pages...the page i am calling from is all distorted in the editor like the images are on top of one another, but looks fine on the browser do i need to some how stop the wrapping in the div tags... can anyone show me the right way of fixing t...
- Ted
- Foro: Programming / Scripting / Coding Forum
- Tema: How would you do this?
- Subject: How would you do this?
- Respuestas: 7
- Vistas: 717
- Subject: How would you do this?
Posted: Octubre 31st, 2006, 9:55 am
xirokx, External hosting (1) means that you may not have local access to the database (2). You may want to test if you can configure any MYSQL tools to connect to the remote server from a local host. I don't lay much hope in this as most of the servers I've used have only permitted access from their...
- Ted
- Foro: Programming / Scripting / Coding Forum
- Tema: Anything wrong?
- Subject: Anything wrong?
- Respuestas: 2
- Vistas: 864
- Subject: Anything wrong?
Posted: Octubre 30th, 2006, 11:52 pm
Well, assuming that really is just one file, first off, your HTML is badly formed. [code] <html> <body bgcolor='#F2F2F3'> </html> <? {{{snip PHP script}} ?> <body bgcolor="#272f80"> {{{ snip HTML}}} </b...
