Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. macmonteiro

    //Netscape's JS Console shows the m

    //Netscape's JS Console shows the message: //&quot;Error: form is not defined Source File: http://coliseu/Agro-Fauna/prod_inc1.php Line: 26&quot; //when I run this code:: ---------------------------------------- <script language=&quot;JavaScript&quot;> function envio(form) {...
  2. macmonteiro

    Radio Buttons' values aren't going... H_E_L_P !!!

    No, man, we're talking about PHP. This mess around 'request' method isn't supposed to happen... All the other variables but this opt are showing alright when you add an 'alert(var_name)' instruction to the function that submits the data. So I wonder it's not even getting there...
  3. macmonteiro

    Radio Buttons' values aren't going... H_E_L_P !!!

    when I simply changed to <inout type=&quot;text&quot; value=&quot;marca&quot;> it worked. why?
  4. macmonteiro

    Radio Buttons' values aren't going... H_E_L_P !!!

    Hulla-Lele! We've written an html 'popup' page that sends data to php using creator.location=&quot;pod_inclu.php?name=&quot;+frm.name.value+&quot;&..and so on.. Its working alright since input type <> &quot;radio&quot; why does it happen? Is there anything wrong with my form syntax? the...
  5. macmonteiro

    does &quot;window.open&quot; support variables in the target URL?

    nice! just create a var...
  6. macmonteiro

    does &quot;window.open&quot; support variables in the target URL?

    Hulla! Guess what? I'm in trouble with JS again... I need to open a popup window that receives some values, adds one more and passes them away to PHP. When we dealing with frames it was simple. Just used...
  7. macmonteiro

    ASP VS SQL

    yeah, its kinda a family crossing the street: ASP is handed to ADO who is handed to SQL but SQL and ASP are able to do a lot of things alone and with other people. as you see, they're a really post-modern family. :) :) :) :) :) :) :) :) :) :) :) :)
  8. macmonteiro

    ASP-Databases - A drop down menu returning query results

    Just it? It may seem a little &quot;duh&quot;, you know, but if you are running ASP in a localhost, have you properly configured your Personal Web Server? Another thing, try chnge your line: cn = &quot;DRIVER={Microsoft Access Driver (*.mdb)};DBQ=&quot; &...
  9. macmonteiro

    ASP-Databases - A drop down menu returning query results

    Can you tell us what is the error msg you received when you ran the asp?
  10. macmonteiro

    ASP-Databases - A drop down menu returning query results

    welshone, your example is nice, too. but did you know that the processment of your code by the server will be faster if you dont close/open your ASP? instead of it, I'd rather use a lot of 'response.write' but everyone must find his own way to do things. and that's the fun! :D
  11. macmonteiro

    ASP-Databases - A drop down menu returning query results

    ok. so, pay attention: _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_- 'create a form response.write &quot;<form name='any_name' action='u_know' method='get'>&quot; 'create a combo response.write &quot;<select name='any_name'>&quot; 'Create a Loop... Do while not cn.EOF '...that...
  12. macmonteiro

    ASP-Databases - A drop down menu returning query results

    You've got me confused now... ok, lets assume that you've inserted these two values into your DB and then you want to show a combo with data from the same DB. alright? what do you want to fetch from your DB? The same values? I didn't understand what's the purpose of your page. You'll do it...
  13. macmonteiro

    ASP-Databases - A drop down menu returning query results

    and at the end, not ?> but %>, of course you know....;-)
  14. macmonteiro

    ASP-Databases - A drop down menu returning query results

    Excuse me, I didn't fix my 'zombie' properly. It should be like this: -_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_- <% Set Conn=Server.CreateObject(&quot;ADODB.Connection&quot;) Conn.Open(&quot;Logs&quot;) Set LogRec=Server.CreateObject(&quot;ADODB.Recordset&quot;) Sel=&quot;SELECT player_id...
  15. macmonteiro

    ASP-Databases - A drop down menu returning query results

    Does it fit? -_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ <% Set Conn=Server.CreateObject(&quot;ADODB.Connection&quot;) Conn.Open(&quot;Logs&quot;) Set LogRec=Server.CreateObject(&quot;ADODB.Recordset&quot;) Sel=&quot;SELECT id, data, diasemana, titulo, corpo, logger FROM TB_Log ORDER BY id...
  16. macmonteiro

    A little challenge

    okay spew, lets go 1) yeah, its kind of that but if this was the problem we'd just use the &quot;post&quot; method ;-) 2) I'm making a lot of different validations. cad_nam can't be a number, cad_email must have the e-mail syntax and so on. But this part is easy and it's done. 3) I'm not...
  17. macmonteiro

    Grouping several entries in the same &lt;div&gt;

    hey, mwolf00, maybe you'd like to see how I did it: ----------------- response.write &quot;<table name='logs' width='60%'>&quot; For i=1 to 20 ThisDate=LogRec(&quot;date&quot;) response.write &quot;<tr>&quot; response.write &quot;<td style='border-style: dashed; border-width: 1px'...
  18. macmonteiro

    Grouping several entries in the same &lt;div&gt;

    Thank you, man I'm not sure I will use it just like you did, but now I think it's really easier than I thought. A star for you!
  19. macmonteiro

    Grouping several entries in the same &lt;div&gt;

    Hi. I've built my own ASP blog and it works fine, thanks. There's just one thing that I couln't do anyway. Look at this code: ------------------------------------- response.write &quot;<table name='posts' width='95%'>&quot; For i=1 to 18 response.write &quot;<tr>&quot; response.write...
  20. macmonteiro

    form validation

    sorry, the function should be: function validate_frm() { pass==0 if ((document.test.a1.value==&quot;&quot;)||(document.test.a2.value==&quot;&quot;)) { alert (&quot;Fill in the fields.&quot;) pass ++ } if (pass==0) { document.test.submit() } } </script>

Part and Inventory Search

Back
Top