Jump to content

Looking for some expert ajax/php help


Zuzz

Recommended Posts

Hi All,

 

I've come up against a problem which my current programmers can't seem to fix

and I'm looking for some expert ajax/php help from someone. In a nutshell I have an

html page with a php form in it which is heavy in size due many fields and validations.

The static html areas of the page are loading as normal but due to the size of the form, it

loads about 3-4 seconds after the rest of the content which is not acceptable.

 

If anyone would like to help (obviously for a fee) please pm me.

 

Thanks in advance.

 

Zuzz

 

Link to comment
https://forums.phpfreaks.com/topic/88422-looking-for-some-expert-ajaxphp-help/
Share on other sites

Hi All,

 

I've come up against a problem which my current programmers can't seem to fix

and I'm looking for some expert ajax/php help from someone. In a nutshell I have an

html page with a php form in it which is heavy in size due many fields and validations.

The static html areas of the page are loading as normal but due to the size of the form, it

loads about 3-4 seconds after the rest of the content which is not acceptable.

 

If anyone would like to help (obviously for a fee) or if you can recommend someone please pm me.

 

Thanks in advance.

 

Zuzz

 

as u say the problem is with the bandwidth(the size of the file)

why cant u try using onload events insted of html static elements like

<script type="text/javascript">
onload = function()
{
document.getElementById("test").src = "img.png"
}
</script>
<body>
<img id="test"/>

insted of

<img src="img.png>

this makes sure that ur form is loaded before the static elements

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.