zero-perfoliate
zero-perfoliate

Author Topic: Show more data  (Read 522 times)

Offline antonymose

  • New PHP Members
  • Posts: 3
  • Karma: +0/-0
Show more data
« on: March 24, 2010, 12:49:51 AM »
HI,

I am a complete newby, so apologies if i get any of this wrong.

Basically i have a databse of infomation that is viewed using a webpage (php), however the infomation is restricted to just 250 records per page. Our IT department are busy on other projects so can not help me (although im sure it is fairly simple), but i would like to be able to show all infomation at once.

Is there something i can write in to the rest of the "web address" that will enable me to see all the info?

Thanks

Antony

Offline RoseKnight

  • PHP Help Guru's
  • ****
  • Posts: 52
  • Karma: +0/-0
Re: Show more data
« Reply #1 on: March 26, 2010, 04:00:19 PM »
That depends on the code itself. Do you have access to any?

hotnoob

  • Guest
Re: Show more data
« Reply #2 on: March 28, 2010, 08:50:11 AM »
Look for
Code: [Select]
limit 0, 250

and replace it with
Code: [Select]
limit 0, 1000
or whatever you want the max to be

if that don't work, it's best to wait for your tech, because I'm pretty sure it would be a very big violation to your company if you posted the code.

Offline antonymose

  • New PHP Members
  • Posts: 3
  • Karma: +0/-0
Re: Show more data
« Reply #3 on: March 29, 2010, 04:48:06 AM »
Hi,

Thanks both for a reply. All i can see is the front end - ie the web page version of it -  that has ?search=&zone= on teh end, eg www.webaddress.co.uk/?search=&zone= - what i was hoping was that i could stick something on the end that shows tell it to show all data

Thanks again

Antony

hotnoob

  • Guest
Re: Show more data
« Reply #4 on: March 29, 2010, 07:25:46 AM »
Hi,

Thanks both for a reply. All i can see is the front end - ie the web page version of it -  that has ?search=&zone= on teh end, eg www.webaddress.co.uk/?search=&zone= - what i was hoping was that i could stick something on the end that shows tell it to show all data

Thanks again

Antony
ahh, well that only works if the person who wrote the script included that :P

Offline antonymose

  • New PHP Members
  • Posts: 3
  • Karma: +0/-0
Re: Show more data
« Reply #5 on: March 29, 2010, 09:00:31 AM »
hi,

i take it ive got no hope without any help from IT then

Antony

hotnoob

  • Guest
Re: Show more data
« Reply #6 on: March 29, 2010, 12:22:46 PM »
Bah, Get on them IT boys :P

It's a quick easy 30 second fix for them, so i don't see why they don't have enough time :P
---
From my experience, most companies have no experience with web designing... For example, Obama wasted what was it, 1.8 billion dollars of the USA's money on a stupid website that no one even visits!
When in reality, a good programmer can make an basic dynamic website with decent security within 10 hours.

Reminds me of this one job interview, they were like, "Ok, how much do you want? 30 thousand dollars? that sound about right?"
I was just laughing so hard in my head, because they were about to pay me 30k for a simple 10 hours of work not even... So i just couldn't help but tell them that i'd do it for only $800.

Well... that's the oil industry though, they'd spend a million dollars on a website if no one told them how cheap it actually is to create one.
---
actually it might just be me, because i'm just a hobby programmer, *and 100 time better than the average programmer with an education*, so i wouldn't know much about pricing; other than what i see on the internet.

Damn, i'm ranting again...

I swear i have chronic rant disorder, just like i have chronic mute disorder on games (where i end up muting everyone on a game) :P
lol. ^^ totally made up btw, i don't think there is such a thing.

 

zero-perfoliate