I would like to implement the equivalent of an adRotator (in ASP) using php. I would like visitors on my site to see a different customer testimonial every time they visit and a different testimonial as they browse through the different pages on the website. However the best implementation...
Pete
It works if you set output_buffering on. An example of a script where it works is below:
<?php
if ( (!isset($_REQUEST['username'])) || (!isset($_REQUEST['password'])) )
{
echo 'You must enter your username and password to proceed';
exit;
}
$username =...
Thank you jpadie, your comment has explained to me the concept of buffering. I may have to redesign my script. In fact my script was checking the user login credentials and if successful would establish a session variable and then redirect the user back to the page he/she came from. There after...
I have finally got the solution for the problem. My header redirects were also refusing to work and it has something to do with buffering caused by having other code before the header line.
Go to php.ini and change the setting for output_buffering. Set it to:
output_buffering = 4096;
It should...
This is another trivial one. I am using vb .net crystal reports. I develop the crystal reports - outstide the vb environment -using crystal reports 9 and i add them as embedded reports to my .net applications. I do turn off the tooltips at the preview mode of the report. This works at the...
Gonna check if Save with data is turned on. However, i had got a way; i.e by the use of a typed dataset. I would then use .net to connect and retrieve the data and then set the report datasource to the dataset.
I tried this method and got the results i needed.
Thanks a lot guys.
I need help on how i can switch between database servers using the same report. My application is developed using VB .Net 2003 Professional and SQL Server 2000.
My users data resides in tables with the same structure but on different servers. When a user logs in he/she selects the server...
The equivalent of itemdata in combo boxes is the property "ValueMember".
For example assuming you have the following objects:
1. ComboBox named cboItems
2. DataTable "dtItems" having the fields(columns) "ItemID" and "Item"
Bind cboItems to the data source dtItems and set the following...
I thought so and i installed Crystal Reports 9 on the machine but the error persisted even after then. About Inno setup i have the program but i do not know how to use it!
I need help with a setup program - VB 6. I installed my application on a Win XP machine but it failed to complete the setup citing failure to register one of the dll files which come with Crystal Reports.
I ran the same setup file on different machines running Windows 2000 and Windows XP and it...
I need help with a setup program - VB 6. I installed my application on a Win XP machine but it failed to complete the setup citing failure to register one of the dll files which come with Crystal Reports.
I ran the same setup file on different machines running Windows 2000 and Windows XP and it...
Grouping as it sounds refers to a situation where you have to arrange your data in hierarchy. For example if you want to return employees per department then you have to group them by department.
This will be useful where you need to show, for exampe, the department name and a list of employees...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.