Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1079005
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T21:48:22+00:00 2026-05-16T21:48:22+00:00

Current scenario: I’m using the gmail oauth api to receive emails on a page.

  • 0

Current scenario:

I’m using the gmail oauth api to receive emails on a page. It’s slow to load many, so I want to post each email on the page as it loads giving the user a chance to do other things on the site while the emails are still loading.

There are a few files required

require_once 'common.php';
require_once 'Zend/Oauth/Consumer.php';
require_once 'Zend/Crypt/Rsa/Key/Private.php'; 
require_once 'Zend/Mail/Protocol/Imap.php';
require_once 'Zend/Mail/Storage/Imap.php';
require_once 'Zend/Mail.php';

And a few functions on the main page that helps the php run. I am familiar with using the ajax call on jquery to call an external php file. I would like to be able instantiate php code on this page to function using ajax functionality so I don’t need to worry about calling these required files and functions each time I check a new email. Is there a way to do this?

  for ($i = $storage->countMessages(); $i >= ($storage->countMessages()-30); $i-- ){ 
 { 
  echo '<li>' . $storage->getMessage($i)->subject . '</li>'; 
 }

  } 

Is the function I would like to function on the fly and return each subject one at a time to load on the screen. I assume I’ll need to create a for loop using javascript, but the main issue is being able to use the php on the page so that I don’t have to recall the includes each time. Maybe I’m curious about changing the scope of these variables, maybe the solution is being able to operate the ajax from this page without an external script – I’m not sure, but any help would be appreciated.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T21:48:23+00:00Added an answer on May 16, 2026 at 9:48 pm

    Firstly, don’t worry about the performance of 6 includes. This something you start to worry about when your site is getting massive. Having said that, utilizing an opcode cache such as APC can reduce the performance cost of including large numbers of files.

    To your question: every request to PHP is it’s own entity and cannot reference code included in another request. Your original request and each subsequent AJAX request are all separate and distinct requests that know nothing of each other and will all require PHP to load all files to load emails.

    I suggest you look at other ways to improve performance. Given loading emails from gmail is slow, perhaps you could investigate using a daemon (a service that runs continually in the background on your server) that synchronizes the emails into a database. Your page can then just get everything it needs from the database which will be much faster for the user. You can use AJAX to check the database periodically for new data. Meanwhile your daemon will be doing the hard-work in the background.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.