Recent content by stalkio

  1. S

    my pages not up

    The 'services up/down' thread says that the lotus http is currently working but I cannot access any of my webpages. Any idea?
  2. S

    error uploading files with php

    It didn't quite work as I'd hoped. I did make some minor changes to the syntax removing some excess brackets but I'm still getting an 'invalid file' message. I have a directory called "upload" in the same location on the server so I'm definitely baffled with this one. Maybe I should add that...
  3. S

    error uploading files with php

    Having a few problems with this script for an uploading file feature: <?php if ((($_FILES["file"]["type"] == "image/gif") || ($_FILES["file"]["type"] == "image/jpeg") || ($_FILES["file"]["type"] == "image/pjpeg")) && ($_FILES["file"]["size"] < 2000000)) { if ($_FILES["file"]["error"] > 0)...
  4. S

    Creating a dynamic data area

    I am trying to create a dynamic data area that is updated from the same screen and does not refresh the screen in order for the data to change. For example an area of text on the left and when pressed will update an image on the right. I initially started this with the spry AJAX format in...
  5. S

    xml problem

    well I've tried it both ways. This is now a simpler code that I'm using trying to display an image using xml: <?xml version="1.0" encoding="utf-8"?> <images> <image src="Images/pic1.jpg" alt="No show" /> </images> Any gurus please give kindly
  6. S

    Flash and Forms

    what was the modified code (in actionscript 3.0) dare I ask?
  7. S

    xml problem

    Does this mean that no one knows how to display an image using XML?
  8. S

    xml problem

    hi all, this is it: I am setting up a spry framework in dreamweaver - at this stage just seeing if I can get an image to display from some code I've written. However the image doesn't show - can anyone tell me if this is correct? thanks doc.xml <?xml version="1.0" encoding="UTF-8"?>...
  9. S

    flash dilemma

    Yes - to run a animation while making a calculation. The movie is a separate movie clip. Also I would like to have conditions so that error messages will come up in a separate dynamic text box if for example a letter is entered and submitted or no data at all - this doesn't seem so straight...
  10. S

    flash dilemma

    i know how to make a simple calculation run triggered by a button and I know how to make an animation run triggered by a button but I cannot make the same button trigger both simultaneously. Currently the animation is beginning on its' own despite the following code: Video.stop()...
  11. S

    simple actionscript problem

    Thanks patmanbofh ... also turns out the following works: on (release) { dynamictext_instancename.text = Number (inputtext_instancename.text) + 2; } . . . not sure why it needs the text extension but there we have it for present and future reference...
  12. S

    simple actionscript problem

    Hello all. . I am trying to get a simple calculation going in flash.... I have created an input text box (variable name: ageVAR) and a dynamic text box (variable name: LuckyNumVAR) on the first frame of the same layer. Also there I have put a button and in the 'action button' section my code...
  13. S

    Server down

    Sorry if this is something you are currently working on and inundated with but I am unable to access the server on C Panel. I did try to login via http://stoli.x10hosting.com:2082/login/ but it didn't accept my details. Any idea when this will be resolved? Many thanks and on the whole great job...
  14. S

    Overall Updates

    what about xml live feed capabilities?
  15. S

    php image display

    As a point of reference - this is how it was achieved: <img src="http://xxx.co.uk/Images/<?php echo $row_rsdef3['img_filename']; ?>" With img_filename being a field on the table where the filenames are inserted as entries, e.g. liger.jpg ..thanks to all contributions - it all...
Top