Search:
Type: Posts; User: adarshakb
Search :
Search took 0.01 seconds.
Hi there,
I am using a script to cache statically DB and PDO statements executed.
here it is
<?php
require_once 'ExceptionHandler.php';
final class Database {
There was some importing error itseams and we were importing db2jcc.jar and db2jcc4.jar both
But had to import ANY one ONLY!!!! [edited]! :P my bad...
Hi there, I am trying to connect to database in java and i succeded using the below details.. connected to IBM DB2 database with java
type = "com.ibm.db2.jcc.DB2Driver";
String url =...
Hi, I just setup tomcat and it comes up properly when i run localhost:8080 in the browser with the propr startup page for server when its started.
But when i put a servlet's .class file in...
oh! ya such a small error just && should be || :D
Now another error.. may be silly like this !!! but still learning... my form is not submitting know why?
Here is the changed code
function...
Hi i am using this form to validate my input
function validateForm() {
var name = document.getElementById("name");
var descp = document.getElementById("descp");
var language =...
Yeh i know about that but may not be experienced enough to know in detail about that :) Also didnt find anything related to implementation in it in my earlier attempts.. but may be i have to search...
YA!!! didnt notice that :P
I understood your concept but how to implement them? Any hints or ideas will be appreciated.
Thanks for every one's replies :)
Hi,
How to create a same login across multiple sites?
I am currently tracking login for 1 of the site suing session. But have 2 more sites and i want users to use the same account. That could be...
Hi,
I think i got your point. :) But Why create a separate table for tags i didn't understand. Could you explain that.
I will try out building the quiery later and post here any doubts
thanks :)
Create table g_card_tags(
card_id integer(10),
tag varchar(30),
primary key(card_id,tag),
foreign key(card_id) references card(card_id)
);
even my first time here :) so dono
anyways i say it tho i didnt go through completely and test it here is what i found
It clearly is an absolute positioning system and thus you wont get...
Both, in this case, are the same. As in using A || B it checks A and if true it ignores B. Similarly in ifelse if first IF statement is true it ignores the second.
But from a view of code...
Hi you missed a point there
check If statement
It should be
PS: I didnt execute this code... have to check yourself
Hi,
It would be useful if you can show us your code or a link to your page.
The usual way to center a page is top put all your content in a container <div> tag and center it using CSS
Hi,
I am new to your forums. Hope to be here for long time.:D
I am not old but not new too in sql:) My task was to put tags for some files. And its a simple [file_id,tag_name] table that i have...