Search Results

Search found 3 results on 1 pages for 'user299196'.

Page 1/1 | 1 

  • Get CGI Fields from URL Python

    - by user299196
    When using the cgi module in Python, I can't seem to figure out how to extract CGI variables in the URL. For example if the url servercgi.py?name=user , how do I get 'name' after import cgi? For some reason, form.getvalue and form['user'] do not work but if I print the object, I see something like FieldStorage(None, None, [MiniFieldStoreage('name', 'user')]).

    Read the article

  • Set primary key with two integers

    - by user299196
    I have a table with primary key (ColumnA, ColumnB). I want to make a function or procedure that when passed two integers will insert a row into the table but make sure the largest integer always goes into ColumnA and the smaller one into ColumnB. So if we have SetKeysWithTheseNumbers(17, 19) would return |-----------------| |ColumnA | ColumnB| |-----------------| |19 | 17 | |-----------------| SetKeysWithTheseNumbers(19, 17) would return the same thing |-----------------| |ColumnA | ColumnB| |-----------------| |19 | 17 | |-----------------|

    Read the article

1