473,394 Members | 1,748 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,394 software developers and data experts.

a very simple problem!

hi ...

When i click to the submit button, i want to insert value
from the a text box to the mysql db. But when i enter text
in the text box nothing happens on clickign the submit
button. can anyone help me with ..
i am goign crazy

pls see the code below:

<table><tr><td bgcolor="SILVER">
<BIG> <B> <FONT COLOR=blue>
WELCOME 'STUDENT_NAME'

TODAY IS <%=DATE()%></b></td><p></p></tr>
</table><p></p>
<input type = "text" size ="50" maxlength=90 name
= "txtStory"><p></P>
<input type="button" value="DRAFT" name="draft"><p></p>
<input type="button" value="SUBMIT" name="submit">

<%
Dim strStoryContent
DIM RSA
DIM QUERY1
DIM ConnString
DIM Conn

ConnString = "Driver={MySQL ODBC 3.51 Driver};"
ConnString = ConnString & "Port=3306; "
ConnString = ConnString & "DATABASE=test; "
strStoryContent = Request.Form("txtStory")

If(Request.querystring("Submit")) <> "" then
response.write "come1" ....this doesnt get printed!!!!
If Request("txtStory") <> "" then
response.write "come2"
Set Conn = Server.CreateObject("ADODB.Connection")
Conn.Open ConnString
set RSA = Server.CreateObject("ADODB.Recordset")
QUERY1 = "INSERT INTO student_content
(student_id,story_id,status_student,story_original _story_wo
rd_count) VALUES
('1','100','draft','"&strStoryContent&"',4)"
Set rsa = conn.Execute(QUERY1)
End If
end if
%>
thanks a lot
Jul 19 '05 #1
9 1811
Where is <form></form> tags?

Suggest you *validate* your HTML first:
http://validator.w3.org

Cheers
Ken

"janet" <kn*******@hotmail.com> wrote in message
news:0a****************************@phx.gbl...
: hi ...
:
: When i click to the submit button, i want to insert value
: from the a text box to the mysql db. But when i enter text
: in the text box nothing happens on clickign the submit
: button. can anyone help me with ..
: i am goign crazy
:
: pls see the code below:
:
: <table><tr><td bgcolor="SILVER">
: <BIG> <B> <FONT COLOR=blue>
: WELCOME 'STUDENT_NAME'
:
: TODAY IS <%=DATE()%></b></td><p></p></tr>
: </table><p></p>
: <input type = "text" size ="50" maxlength=90 name
: = "txtStory"><p></P>
: <input type="button" value="DRAFT" name="draft"><p></p>
: <input type="button" value="SUBMIT" name="submit">
:
: <%
: Dim strStoryContent
: DIM RSA
: DIM QUERY1
: DIM ConnString
: DIM Conn
:
: ConnString = "Driver={MySQL ODBC 3.51 Driver};"
: ConnString = ConnString & "Port=3306; "
: ConnString = ConnString & "DATABASE=test; "
: strStoryContent = Request.Form("txtStory")
:
: If(Request.querystring("Submit")) <> "" then
: response.write "come1" ....this doesnt get printed!!!!
: If Request("txtStory") <> "" then
: response.write "come2"
: Set Conn = Server.CreateObject("ADODB.Connection")
: Conn.Open ConnString
: set RSA = Server.CreateObject("ADODB.Recordset")
: QUERY1 = "INSERT INTO student_content
: (student_id,story_id,status_student,story_original _story_wo
: rd_count) VALUES
: ('1','100','draft','"&strStoryContent&"',4)"
: Set rsa = conn.Execute(QUERY1)
: End If
: end if
: %>
: thanks a lot
Jul 19 '05 #2
hey hi ...

thanks a lot for such a quick response.

u r right i didnt put the form tag! silly on my part. i
made the following changes (see below) but still nothing
happens. I am newbie and maybe asking a silly question for
you to recheck. please see if u suggest something.

thanks a lot again

<form action="aftStSelection.asp" method="post">
<table><tr><td bgcolor="SILVER">
<BIG> <B> <FONT COLOR=blue>
WELCOME 'STUDENT_NAME'

TODAY IS <%=DATE()%></b></td><p></p></tr>
</table><p></p>
<input type = "text" size ="50" maxlength=90 name
= "txtStory"><p></P>
<input type="button" value="DRAFT" name="draft"><p></p>
<input type="button" value="SUBMIT" name="submit">
</form>

<%
Dim strStoryContent
DIM RSA
DIM QUERY1
DIM ConnString
DIM Conn

ConnString = "Driver={MySQL ODBC 3.51 Driver};"
ConnString = ConnString & "Port=3306; "
ConnString = ConnString & "DATABASE=test; "
strStoryContent = Request.Form("txtStory")

If(Request.querystring("Submit")) <> "" then
response.write "come1"
If Request("txtStory") <> "" then
response.write "come2"
Set Conn = Server.CreateObject("ADODB.Connection")
Conn.Open ConnString
set RSA = Server.CreateObject("ADODB.Recordset")
QUERY1 = "INSERT INTO student_content
(student_id,story_id,status_student,story_original _story_wo
rd_count) VALUES
('1','100','draft','"&strStoryContent&"',4)"
Set rsa = conn.Execute(QUERY1)
End If
end if
%>
-----Original Message-----
Where is <form></form> tags?

Suggest you *validate* your HTML first:
http://validator.w3.org

Cheers
Ken

"janet" <kn*******@hotmail.com> wrote in message
news:0a****************************@phx.gbl...
: hi ...
:
: When i click to the submit button, i want to insert value: from the a text box to the mysql db. But when i enter text: in the text box nothing happens on clickign the submit
: button. can anyone help me with ..
: i am goign crazy
:
: pls see the code below:
:
: <table><tr><td bgcolor="SILVER">
: <BIG> <B> <FONT COLOR=blue>
: WELCOME 'STUDENT_NAME'
:
: TODAY IS <%=DATE()%></b></td><p></p></tr>
: </table><p></p>
: <input type = "text" size ="50" maxlength=90 name
: = "txtStory"><p></P>
: <input type="button" value="DRAFT" name="draft"><p></p>
: <input type="button" value="SUBMIT" name="submit">
:
: <%
: Dim strStoryContent
: DIM RSA
: DIM QUERY1
: DIM ConnString
: DIM Conn
:
: ConnString = "Driver={MySQL ODBC 3.51 Driver};"
: ConnString = ConnString & "Port=3306; "
: ConnString = ConnString & "DATABASE=test; "
: strStoryContent = Request.Form("txtStory")
:
: If(Request.querystring("Submit")) <> "" then
: response.write "come1" ....this doesnt get printed!!!!
: If Request("txtStory") <> "" then
: response.write "come2"
: Set Conn = Server.CreateObject("ADODB.Connection")
: Conn.Open ConnString
: set RSA = Server.CreateObject("ADODB.Recordset")
: QUERY1 = "INSERT INTO student_content
: (student_id,story_id,status_student,story_original _story_wo: rd_count) VALUES
: ('1','100','draft','"&strStoryContent&"',4)"
: Set rsa = conn.Execute(QUERY1)
: End If
: end if
: %>
: thanks a lot
.

Jul 19 '05 #3
Change:

If Request.querystring("Submit") <> "" then

to

If Request.Form("Submit") <> "" then

Cheers
Ken

"janet" <kn*******@hotmail.com> wrote in message
news:08****************************@phx.gbl...
: hey hi ...
:
: thanks a lot for such a quick response.
:
: u r right i didnt put the form tag! silly on my part. i
: made the following changes (see below) but still nothing
: happens. I am newbie and maybe asking a silly question for
: you to recheck. please see if u suggest something.
:
: thanks a lot again
:
: <form action="aftStSelection.asp" method="post">
: <table><tr><td bgcolor="SILVER">
: <BIG> <B> <FONT COLOR=blue>
: WELCOME 'STUDENT_NAME'
:
: TODAY IS <%=DATE()%></b></td><p></p></tr>
: </table><p></p>
: <input type = "text" size ="50" maxlength=90 name
: = "txtStory"><p></P>
: <input type="button" value="DRAFT" name="draft"><p></p>
: <input type="button" value="SUBMIT" name="submit">
: </form>
:
: <%
: Dim strStoryContent
: DIM RSA
: DIM QUERY1
: DIM ConnString
: DIM Conn
:
: ConnString = "Driver={MySQL ODBC 3.51 Driver};"
: ConnString = ConnString & "Port=3306; "
: ConnString = ConnString & "DATABASE=test; "
: strStoryContent = Request.Form("txtStory")
:
: If(Request.querystring("Submit")) <> "" then
: response.write "come1"
: If Request("txtStory") <> "" then
: response.write "come2"
: Set Conn = Server.CreateObject("ADODB.Connection")
: Conn.Open ConnString
: set RSA = Server.CreateObject("ADODB.Recordset")
: QUERY1 = "INSERT INTO student_content
: (student_id,story_id,status_student,story_original _story_wo
: rd_count) VALUES
: ('1','100','draft','"&strStoryContent&"',4)"
: Set rsa = conn.Execute(QUERY1)
: End If
: end if
: %>
:
:
:
: >-----Original Message-----
: >Where is <form></form> tags?
: >
: >Suggest you *validate* your HTML first:
: >http://validator.w3.org
: >
: >Cheers
: >Ken
: >
: >"janet" <kn*******@hotmail.com> wrote in message
: >news:0a****************************@phx.gbl...
: >: hi ...
: >:
: >: When i click to the submit button, i want to insert
: value
: >: from the a text box to the mysql db. But when i enter
: text
: >: in the text box nothing happens on clickign the submit
: >: button. can anyone help me with ..
: >: i am goign crazy
: >:
: >: pls see the code below:
: >:
: >: <table><tr><td bgcolor="SILVER">
: >: <BIG> <B> <FONT COLOR=blue>
: >: WELCOME 'STUDENT_NAME'
: >:
: >: TODAY IS <%=DATE()%></b></td><p></p></tr>
: >: </table><p></p>
: >: <input type = "text" size ="50" maxlength=90 name
: >: = "txtStory"><p></P>
: >: <input type="button" value="DRAFT" name="draft"><p></p>
: >: <input type="button" value="SUBMIT" name="submit">
: >:
: >: <%
: >: Dim strStoryContent
: >: DIM RSA
: >: DIM QUERY1
: >: DIM ConnString
: >: DIM Conn
: >:
: >: ConnString = "Driver={MySQL ODBC 3.51 Driver};"
: >: ConnString = ConnString & "Port=3306; "
: >: ConnString = ConnString & "DATABASE=test; "
: >: strStoryContent = Request.Form("txtStory")
: >:
: >: If(Request.querystring("Submit")) <> "" then
: >: response.write "come1" ....this doesnt get printed!!!!
: >: If Request("txtStory") <> "" then
: >: response.write "come2"
: >: Set Conn = Server.CreateObject("ADODB.Connection")
: >: Conn.Open ConnString
: >: set RSA = Server.CreateObject("ADODB.Recordset")
: >: QUERY1 = "INSERT INTO student_content
: >:
: (student_id,story_id,status_student,story_original _story_wo
: >: rd_count) VALUES
: >: ('1','100','draft','"&strStoryContent&"',4)"
: >: Set rsa = conn.Execute(QUERY1)
: >: End If
: >: end if
: >: %>
: >: thanks a lot
: >
: >
: >.
: >
Jul 19 '05 #4
hey thanks ken for at least posting in some options.

i had already tried this thing before. I feel i am doign
some very silly mistake.

its still doesnt work!
-----Original Message-----
Change:

If Request.querystring("Submit") <> "" then

to

If Request.Form("Submit") <> "" then

Cheers
Ken

"janet" <kn*******@hotmail.com> wrote in message
news:08****************************@phx.gbl...
: hey hi ...
:
: thanks a lot for such a quick response.
:
: u r right i didnt put the form tag! silly on my part. i
: made the following changes (see below) but still nothing
: happens. I am newbie and maybe asking a silly question for: you to recheck. please see if u suggest something.
:
: thanks a lot again
:
: <form action="aftStSelection.asp" method="post">
: <table><tr><td bgcolor="SILVER">
: <BIG> <B> <FONT COLOR=blue>
: WELCOME 'STUDENT_NAME'
:
: TODAY IS <%=DATE()%></b></td><p></p></tr>
: </table><p></p>
: <input type = "text" size ="50" maxlength=90 name
: = "txtStory"><p></P>
: <input type="button" value="DRAFT" name="draft"><p></p>
: <input type="button" value="SUBMIT" name="submit">
: </form>
:
: <%
: Dim strStoryContent
: DIM RSA
: DIM QUERY1
: DIM ConnString
: DIM Conn
:
: ConnString = "Driver={MySQL ODBC 3.51 Driver};"
: ConnString = ConnString & "Port=3306; "
: ConnString = ConnString & "DATABASE=test; "
: strStoryContent = Request.Form("txtStory")
:
: If(Request.querystring("Submit")) <> "" then
: response.write "come1"
: If Request("txtStory") <> "" then
: response.write "come2"
: Set Conn = Server.CreateObject("ADODB.Connection")
: Conn.Open ConnString
: set RSA = Server.CreateObject("ADODB.Recordset")
: QUERY1 = "INSERT INTO student_content
: (student_id,story_id,status_student,story_original _story_wo: rd_count) VALUES
: ('1','100','draft','"&strStoryContent&"',4)"
: Set rsa = conn.Execute(QUERY1)
: End If
: end if
: %>
:
:
:
: >-----Original Message-----
: >Where is <form></form> tags?
: >
: >Suggest you *validate* your HTML first:
: >http://validator.w3.org
: >
: >Cheers
: >Ken
: >
: >"janet" <kn*******@hotmail.com> wrote in message
: >news:0a****************************@phx.gbl...
: >: hi ...
: >:
: >: When i click to the submit button, i want to insert
: value
: >: from the a text box to the mysql db. But when i enter
: text
: >: in the text box nothing happens on clickign the submit: >: button. can anyone help me with ..
: >: i am goign crazy
: >:
: >: pls see the code below:
: >:
: >: <table><tr><td bgcolor="SILVER">
: >: <BIG> <B> <FONT COLOR=blue>
: >: WELCOME 'STUDENT_NAME'
: >:
: >: TODAY IS <%=DATE()%></b></td><p></p></tr>
: >: </table><p></p>
: >: <input type = "text" size ="50" maxlength=90 name
: >: = "txtStory"><p></P>
: >: <input type="button" value="DRAFT" name="draft"><p></p>: >: <input type="button" value="SUBMIT" name="submit">
: >:
: >: <%
: >: Dim strStoryContent
: >: DIM RSA
: >: DIM QUERY1
: >: DIM ConnString
: >: DIM Conn
: >:
: >: ConnString = "Driver={MySQL ODBC 3.51 Driver};"
: >: ConnString = ConnString & "Port=3306; "
: >: ConnString = ConnString & "DATABASE=test; "
: >: strStoryContent = Request.Form("txtStory")
: >:
: >: If(Request.querystring("Submit")) <> "" then
: >: response.write "come1" ....this doesnt get printed!!!!: >: If Request("txtStory") <> "" then
: >: response.write "come2"
: >: Set Conn = Server.CreateObject("ADODB.Connection")
: >: Conn.Open ConnString
: >: set RSA = Server.CreateObject("ADODB.Recordset")
: >: QUERY1 = "INSERT INTO student_content
: >:
: (student_id,story_id,status_student,story_original _story_wo: >: rd_count) VALUES
: >: ('1','100','draft','"&strStoryContent&"',4)"
: >: Set rsa = conn.Execute(QUERY1)
: >: End If
: >: end if
: >: %>
: >: thanks a lot
: >
: >
: >.
: >
.

Jul 19 '05 #5
Can you add this:

<%
If Request.Form("Submit") <> "" then
' your existing stuff here
Else
Response.Write("Submit is a zero length string")
End If
%>

and tell us what you see on the screen?

(When you say: "You tried this before, and it didn't work" - it didn't work
before because you had no <form></form> tags right?)

Cheers
Ken
"janet" <kn*******@hotmail.com> wrote in message
news:0b****************************@phx.gbl...
: hey thanks ken for at least posting in some options.
:
: i had already tried this thing before. I feel i am doign
: some very silly mistake.
:
: its still doesnt work!
:
: >-----Original Message-----
: >Change:
: >
: >If Request.querystring("Submit") <> "" then
: >
: >to
: >
: >If Request.Form("Submit") <> "" then
: >
: >Cheers
: >Ken
: >
: >"janet" <kn*******@hotmail.com> wrote in message
: >news:08****************************@phx.gbl...
: >: hey hi ...
: >:
: >: thanks a lot for such a quick response.
: >:
: >: u r right i didnt put the form tag! silly on my part. i
: >: made the following changes (see below) but still nothing
: >: happens. I am newbie and maybe asking a silly question
: for
: >: you to recheck. please see if u suggest something.
: >:
: >: thanks a lot again
: >:
: >: <form action="aftStSelection.asp" method="post">
: >: <table><tr><td bgcolor="SILVER">
: >: <BIG> <B> <FONT COLOR=blue>
: >: WELCOME 'STUDENT_NAME'
: >:
: >: TODAY IS <%=DATE()%></b></td><p></p></tr>
: >: </table><p></p>
: >: <input type = "text" size ="50" maxlength=90 name
: >: = "txtStory"><p></P>
: >: <input type="button" value="DRAFT" name="draft"><p></p>
: >: <input type="button" value="SUBMIT" name="submit">
: >: </form>
: >:
: >: <%
: >: Dim strStoryContent
: >: DIM RSA
: >: DIM QUERY1
: >: DIM ConnString
: >: DIM Conn
: >:
: >: ConnString = "Driver={MySQL ODBC 3.51 Driver};"
: >: ConnString = ConnString & "Port=3306; "
: >: ConnString = ConnString & "DATABASE=test; "
: >: strStoryContent = Request.Form("txtStory")
: >:
: >: If(Request.querystring("Submit")) <> "" then
: >: response.write "come1"
: >: If Request("txtStory") <> "" then
: >: response.write "come2"
: >: Set Conn = Server.CreateObject("ADODB.Connection")
: >: Conn.Open ConnString
: >: set RSA = Server.CreateObject("ADODB.Recordset")
: >: QUERY1 = "INSERT INTO student_content
: >:
: (student_id,story_id,status_student,story_original _story_wo
: >: rd_count) VALUES
: >: ('1','100','draft','"&strStoryContent&"',4)"
: >: Set rsa = conn.Execute(QUERY1)
: >: End If
: >: end if
: >: %>
: >:
: >:
: >:
: >: >-----Original Message-----
: >: >Where is <form></form> tags?
: >: >
: >: >Suggest you *validate* your HTML first:
: >: >http://validator.w3.org
: >: >
: >: >Cheers
: >: >Ken
: >: >
: >: >"janet" <kn*******@hotmail.com> wrote in message
: >: >news:0a****************************@phx.gbl...
: >: >: hi ...
: >: >:
: >: >: When i click to the submit button, i want to insert
: >: value
: >: >: from the a text box to the mysql db. But when i enter
: >: text
: >: >: in the text box nothing happens on clickign the
: submit
: >: >: button. can anyone help me with ..
: >: >: i am goign crazy
: >: >:
: >: >: pls see the code below:
: >: >:
: >: >: <table><tr><td bgcolor="SILVER">
: >: >: <BIG> <B> <FONT COLOR=blue>
: >: >: WELCOME 'STUDENT_NAME'
: >: >:
: >: >: TODAY IS <%=DATE()%></b></td><p></p></tr>
: >: >: </table><p></p>
: >: >: <input type = "text" size ="50" maxlength=90 name
: >: >: = "txtStory"><p></P>
: >: >: <input type="button" value="DRAFT"
: name="draft"><p></p>
: >: >: <input type="button" value="SUBMIT" name="submit">
: >: >:
: >: >: <%
: >: >: Dim strStoryContent
: >: >: DIM RSA
: >: >: DIM QUERY1
: >: >: DIM ConnString
: >: >: DIM Conn
: >: >:
: >: >: ConnString = "Driver={MySQL ODBC 3.51 Driver};"
: >: >: ConnString = ConnString & "Port=3306; "
: >: >: ConnString = ConnString & "DATABASE=test; "
: >: >: strStoryContent = Request.Form("txtStory")
: >: >:
: >: >: If(Request.querystring("Submit")) <> "" then
: >: >: response.write "come1" ....this doesnt get
: printed!!!!
: >: >: If Request("txtStory") <> "" then
: >: >: response.write "come2"
: >: >: Set Conn = Server.CreateObject("ADODB.Connection")
: >: >: Conn.Open ConnString
: >: >: set RSA = Server.CreateObject("ADODB.Recordset")
: >: >: QUERY1 = "INSERT INTO student_content
: >: >:
: >:
: (student_id,story_id,status_student,story_original _story_wo
: >: >: rd_count) VALUES
: >: >: ('1','100','draft','"&strStoryContent&"',4)"
: >: >: Set rsa = conn.Execute(QUERY1)
: >: >: End If
: >: >: end if
: >: >: %>
: >: >: thanks a lot
: >: >
: >: >
: >: >.
: >: >
: >
: >
: >.
: >
Jul 19 '05 #6
Change:

<input type="button" value="SUBMIT" name="submit">

to

<input type="submit" value="submit">

You have two normal buttons, either of which is submitting the form.

Cheers
Ken
--
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
"janet" <kn*******@hotmail.com> wrote in message
news:0b****************************@phx.gbl...
: yes ...it is goign to the else part???but why is this
: happening????????????????
: >-----Original Message-----
: >Can you add this:
: >
: ><%
: >If Request.Form("Submit") <> "" then
: > ' your existing stuff here
: >Else
: > Response.Write("Submit is a zero length string")
: >End If
: >%>
: >
: >and tell us what you see on the screen?
: >
: >(When you say: "You tried this before, and it didn't
: work" - it didn't work
: >before because you had no <form></form> tags right?)
: >
: >Cheers
: >Ken
Jul 19 '05 #7
thanks ken ... no progress..i have now divided the code
into 2 pages. let me post a fresh query to have fresh
feedback....its sickening !!!!!!!!!!

thanks
-----Original Message-----
Change:

<input type="button" value="SUBMIT" name="submit">

to

<input type="submit" value="submit">

You have two normal buttons, either of which is submitting the form.
Cheers
Ken
--
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~
"janet" <kn*******@hotmail.com> wrote in message
news:0b****************************@phx.gbl...
: yes ...it is goign to the else part???but why is this
: happening????????????????
: >-----Original Message-----
: >Can you add this:
: >
: ><%
: >If Request.Form("Submit") <> "" then
: > ' your existing stuff here
: >Else
: > Response.Write("Submit is a zero length string")
: >End If
: >%>
: >
: >and tell us what you see on the screen?
: >
: >(When you say: "You tried this before, and it didn't
: work" - it didn't work
: >before because you had no <form></form> tags right?)
: >
: >Cheers
: >Ken
.

Jul 19 '05 #8
In article <O3**************@TK2MSFTNGP09.phx.gbl>,
ke*******@THISadOpenStatic.com says...
Change:

If Request.querystring("Submit") <> "" then

to

If Request.Form("Submit") <> "" then


Would someone remind me again what is evil about "Request("Submit")"?

-- Rick

Jul 19 '05 #9
"Guinness Mann" <GM***@dublin.com> wrote in message
news:MP************************@news.newsguy.com.. .
In article <O3**************@TK2MSFTNGP09.phx.gbl>,
ke*******@THISadOpenStatic.com says...
Change:

If Request.querystring("Submit") <> "" then

to

If Request.Form("Submit") <> "" then


Would someone remind me again what is evil about "Request("Submit")"?

-- Rick

http://www.aspfaq.com/show.asp?id=2111
Jul 19 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: Patchwork | last post by:
Hi Everyone, Please take a look at the following (simple and fun) program: //////////////////////////////////////////////////////////////////////////// ///////////// // Monster Munch, example...
6
by: francisco lopez | last post by:
ok , first of all sorry if my english is not so good, I do my best. here is my problem: I donīt know much javascript so I wrote a very simple one to validate a form I have on my webpage. ...
0
by: 42 | last post by:
I implemented a simple class inherited from Page to create a page template. It simply wraps some trivial html around the inherited page, and puts the inherited page into a form. The problem I...
18
by: Sender | last post by:
Yesterday there was a very long thread on this query. (You can search on this by post by 'sender' with subject 'Simple Problem' post date Oct 7 time 1:43p) And in the end the following code was...
27
by: one man army | last post by:
Hi All- I am new to PHP. I found FAQTS and the php manual. I am trying this sequence, but getting 'no zip string found:'... PHP Version 4.4.0 $doc = new DomDocument; $res =...
2
by: Vitali Gontsharuk | last post by:
Hi! I have a problem programming a simple client-server game, which is called pingpong ;-) The final program will first be started as a server (nr. 2) and then as a client. The client then...
8
by: rdrink | last post by:
I am just getting into pysqlite (with a fair amount of Python and MySQL experience behind me) and have coded a simple test case to try to get the hang of things... yet have run into a 'stock...
5
by: Chelong | last post by:
hey,the follow is the text file content ========================================apple====pear== one Lily 7 0 0 7 7 two Lily 20 20 6.6666 20 8 one Lily 0 10 2.85 4 0 two Lily 22 22 7.33326 2 5 ...
30
by: galiorenye | last post by:
Hi, Given this code: A** ppA = new A*; A *pA = NULL; for(int i = 0; i < 10; ++i) { pA = ppA; //do something with pA
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.