Skip to main content
AI Assist is now on Stack Overflow. Start a chat to get instant answers from across the network. Sign up to save and share your chats.
added 84 characters in body
Source Link
meda
  • 45.5k
  • 14
  • 96
  • 123

Your question is like saying How can I fetch data without fetching it ?

This is obviously impossible, you will need to fetch it at some point in your application.


if($results = $sth->fetch()) { var_dump($results); } 

Your question is like saying How can I fetch data without fetching it ?

This is obviously impossible, you will need to fetch it at some point in your application.

Your question is like saying How can I fetch data without fetching it ?

This is obviously impossible, you will need to fetch it at some point in your application.


if($results = $sth->fetch()) { var_dump($results); } 
Source Link
meda
  • 45.5k
  • 14
  • 96
  • 123

Your question is like saying How can I fetch data without fetching it ?

This is obviously impossible, you will need to fetch it at some point in your application.