Jump to content

spiderwell

Members
  • Posts

    1,008
  • Joined

  • Last visited

Everything posted by spiderwell

  1. google found me this http://gwydir.demon.co.uk/jo/probability/calcdice.htm#cond1 and thats on dice, but i figured dice are 6 and yours are 3, so i came up with 1 in 6, as each one has a 1 in 3 chance 'm not to good on odd calculating but the link might help a bit
  2. we need to see the relevant source code to help you
  3. my role pretty much covers what you described you can do, and I'm on 18K I think they must appreciate my input as I handed in my notice due to relocating, as i wasnt making enough money due to a long commute, and after many attempts to get 1-2 days a week working from home they wanted me in the office with weak arguments. They turned around and want me to work from home 24/7 for the next 2 months at least now! I had to laugh at that. the money saved on fuel is like a £4k payrise! result! I think what i am trying to say is if they value you more than your current wage, they would likely keep you with a payrise if they agree with your suggestion. The process of having to get a new employee found and settled in is probably something they could do without too.
  4. there might be a thread for things like that somewhere already, not sure.
  5. Im trying to get an API from chemspider as there's just far too many.
  6. reminds me of this tutorial http://anantgarg.com/2009/03/13/write-your-own-php-mvc-framework-part-1/ so I would say you are heading in the right direction pretty new to mvc myself so couldnt comment more detailed really
  7. ok so you can now drag n drop, or double click and then the formula you make is sortable. im thinking about adding a quiz section
  8. i just looked at your site, it appears to be working now?
  9. also CKeditor uses iframe to create its WYSIWYG environment, you need to include a hidden input to the main form which on submit is passed the CKeditor text/html
  10. looks like an uncleared float to me
  11. threads like this remind me how much I need to improve my SQL knowledge.
  12. why not remove the validation from what you have already
  13. are you good enough to build your own? i prefer to make my own things when i have time, but i recently used a calendar that was 3rd party due to time constraints. I used luxcal. sounds to me though with the number of calendars you want to sync with, your own bespoke solution might be the only option!
  14. ajax will not upload images via the xml object, post to a hidden iframe to achieve this
  15. if($pass || $user != false) could be shortened if($pass || $user) not sure why you would strip info from the inputs like spaces etc and then enter it to the DB rather than returning to user to state 'cannnot enter tags or spaces' becuase if i entered my name as joe bloggs, it would be entered as joebloggs without my knowledge and i couldnt log in!! the sql statement should have the variables wrapped in mysql escape string function. no need to use 2 variables when 1 can be used: $T_user = strip_tags($_POST['username']); $user = str_replace(' ','',$T_user); just use $user for all of it
  16. well i like my answers to provide something of substance, otherwise whats the point in responding!
  17. yup if you use $_GET or $_POST or $_SESSION to try and get a value for something that doesnt exist , you will get this error
  18. yes, i would assume the login is checked against a database, so just hold onto the data of their name and on sucess of login, echo it out to them
  19. any more feedback?
  20. id is supposed to be unique so having a bunch of Divs with the same ID will break the DOM var str = $("#div").serialize(); can be changed to var str = $(".faqQuestion div").serialize(); freeing up your ID to be unique
  21. i would say be able to build pages that connect and manage tables in a database. perhaps only in procedural manner. and know where the kettle is
  22. yeah i 3rd that opinion
  23. my praise was not so much about its code, just its accessibiity for newbs and the like.
  24. spiderwell

    NaCl

    im not sure i know the chemical formula for spam Barium Cobalt Nitrogen?
  25. there doesnt seem to be any client side scripting? can you show us the code you have so far, what have you gotten it to do
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.