- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 4
- Posts with Upvotes
- 3
- Upvoting Members
- 2
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
10 Posted Topics
Have a look at OFFSET for your SELECT queries: http://stackoverflow.com/questions/3173635/offset-mysql-without-limit
No one will be able to suggest anything viable, unless you can provide some more information about your project.
1) Is [CODE]$this->root . "files" . $folderPath . SEP . $infoFile["file_name"][/CODE] pointing to the file correctly (no problems with path / filename)? 2) Replace @unlink with unlink -> @ symbol suppresses errors, you might wanna see all the errors while debugging
You really need to do yourself some seriously awful lot of reading, as you don't even seem to be able to differentiate between client-side / server-side. Where you are now, you're most likely to get anywhere by using some of the ready-to-go packages, phpbb and other bulletins available (you may …
You're not supposed to duplicate ids - that's why you use classes. What you're trying to do is easily achievable with markup and CSS - no need to involve js for that. Can't remember but there may be an article(s) on [URL="http://www.alistapart.com/"]http://www.alistapart.com/[/URL] - if not there is plenty other resources …
Are you allowing your users to freely input actual <tags>? What if someone tried to stick a div styled to cover your whole page with some bs? What if someone tried to stick some nasty <script>?
Hi, it's touch_the_sky:P I'm a programmer / webdev - Php, Symfony, ModX, markup, css, js, jQuery & more. Here to hopefully help few folks plus promote the jQuery plugin I started working on.
Google around for 'jQuery each', something like that might work: [CODE] $('#id').children().find('select').each(function(){ some_array[] = $(this).attr('id'); }); [/CODE]
You can have jQuery + Mootols without conflict, or jQuery with Prototype without conflict, etc. Apart from the noConflict(), have you tried having all jQuery stuff (lib, plugs, code)loaded first, then the rest of js?
Just be careful with the js validation there - don't rely on it entirely as it can be skipped with disabling the js in your browser
The End.
touch_the_sky