Search results

  1. W

    How to end my vodafone contract. Not ending early!?

    Hi I have a contract with vodafone for 18 months. I am now in month 16/17... I dont have long left to go. I just want to know what to do so that it ends when it is supposed to. Will the last month come and the number switch to pay as you go automatically? Or do i need to do something else...
  2. W

    classic asp help please.?

    Hi, I have a simple sql query. It takes the servers date and searches the database based on that date. The code is below: sql = "SELECT * FROM Job WHERE JobDuration_Id = 1 AND JobStatus_Id = 2 AND PublishEndDate >=#"& date &"#" This code has been working for over a month. Today it does not...
  3. W

    PHP help please. How to output?

    Hi, in asp i can output a variable like this: <div><span><%= myvar %></span></div> How do i do this with php. I can do it but its horrid. I have to echo out the lines... like echo '<div><span>'; echo $myvar; echo '</span></div>'; Does a better way not exist?
  4. W

    PHP regexp help. Just a simple list of titles.?

    Hi, how can i create a reg exp for a list of titles. For example, regexp to make sure a string is only Mr or Ms or Miss? This is in php. Thanks.
  5. W

    Hi, text only regular exp? php.?

    Hi, I just want a regexp for text only. A-Z a-z, Can you show me how... also... do you have one for text only like above with the ability to have a - or . or ' Thanks for the help
  6. W

    Hi, PHP help, Can you locate anything wrong with this. Thanks.?

    Hi, I get T error with the below. Any Ideas what i am doing wrong. I am a noob to php: echo '"$result"'': <input type="radio" name="hello" value="hello">';
  7. W

    Help with ajax please?

    Hi, I have the below code. Do While Not rs.eof FirstName = rs("FirstName") BannerId = rs("BannerId") %> <student> <firstname><% response.write(FirstName)%></firstname> <bannerId><% response.write(BannerId)%></bannerId> </student> <% rs.MoveNext Loop...
  8. W

    JQuery ajax help please.?

    Hi, I have an asp page which is called with ajax. It correctly replies with an xml tree. THis tree has: <studentList> <student> <id>1</id> <name>Tony1</name> </student> <student> <id>2</id> <name>Tony2</name> </student>...
  9. W

    ASP on IIS help please?

    Hi, I have set up IIS on vista home 32 bit. I ticked all the boxes when setting up IIS on vista. This includes all the boxed about asp. Yet when I open a page through localhose it doesnt work. All the page has: <html> <body> <% response.write("My first ASP script!") %> </body> </html> An...
  10. W

    JQuery ajax help please.?

    Hi, I have an asp page which is called with ajax. It correctly replies with an xml tree. THis tree has: <studentList> <student> <id>1</id> <name>Tony1</name> </student> <student> <id>2</id> <name>Tony2</name> </student>...
  11. W

    Help with ajax please?

    Hi, I have the below code. Do While Not rs.eof FirstName = rs("FirstName") BannerId = rs("BannerId") %> <student> <firstname><% response.write(FirstName)%></firstname> <bannerId><% response.write(BannerId)%></bannerId> </student> <% rs.MoveNext Loop...
  12. W

    ASP on IIS help please?

    Hi, I have set up IIS on vista home 32 bit. I ticked all the boxes when setting up IIS on vista. This includes all the boxed about asp. Yet when I open a page through localhose it doesnt work. All the page has: <html> <body> <% response.write("My first ASP script!") %> </body> </html> An...
  13. W

    Help with AJAX please.?

    Hi, I have the below asp code. I know.... asp lol. But thats what I have to use. Ok here it is: <% Dim oRS, oConn Set oConn = Server.CreateObject("ADODB.Connection") oConn.ConnectionString = "Driver={Microsoft Access Driver (*.mdb)};" & _ "DBQ=" & Server.MapPath("dbb.mdb") oConn.Open Set oRS =...
  14. W

    Help with AJAX please.?

    Hi, I have the below asp code. I know.... asp lol. But thats what I have to use. Ok here it is: <% Dim oRS, oConn Set oConn = Server.CreateObject("ADODB.Connection") oConn.ConnectionString = "Driver={Microsoft Access Driver (*.mdb)};" & _ "DBQ=" & Server.MapPath("dbb.mdb") oConn.Open Set oRS =...
  15. W

    Hi, html table help please?

    HI, how do you create a table with two rows, the first row has two cells and the bottom row has one cell going across the two other cells? Thanks. When i try it it just gives me two top cells and two bottom cells. The below code is what i have. Thanks. <table id="newtab" border="1"> <tr>...
  16. W

    Hi, html table resize help?

    Hi, I have a table. How can i make it change size as the browser window changes size? Thanks.
  17. W

    Hi, html table help please?

    HI, how do you create a table with two rows, the first row has two cells and the bottom row has one cell going across the two other cells? Thanks. When i try it it just gives me two top cells and two bottom cells. The below code is what i have. Thanks. <table id="newtab" border="1"> <tr>...
Back
Top