Link to home
Start Free TrialLog in
Avatar of pmsguy
pmsguy

asked on

PHP Personal Information Manage, Planner, calendar, events, contact management

I need to get a Personal Information Manager/Planner/Contact Management System similar to Microsoft Outlook

It needs to written in PHP

Calendar - Can schedule events, add recurring events, weekdays
Task
Events
Contact Management
Send out alerts for events
Avatar of shobinsun
shobinsun
Flag of India image

Avatar of pmsguy
pmsguy

ASKER

I want to run this on an LAMP - Linux, Apache, MySQL, PHP environment.

Please reply with PHP only applications.
Front end could be AJAX, jQuery ...
Back End MUST be PHP/mysql

Must do recurring tasks/events
didn't u check my link?? on the page, click view source.
<?php
include('/big/dom/xphplens/www/php/phplens/phplens.inc.php');
session_start();
session_register('id');
//----------------------------------------
// The following lines are for formatting 
// the page and not needed by phplens
$gTitle = "Products (Outlook Interface)";
$HIDEHEADER=true;
?>
<table width=100% ><tr><td>

<?php
include('./header.php');
?>
</td></tr></table>
<?php
if (isset($HTTP_GET_VARS['cat']))
    $id = $HTTP_GET_VARS['cat'];

if (empty($id))  $id = 1; // BEVERAGES

$lens = PHPLensConnect('outtop',
    "select * from products where categoryid=$id order by 2",
    'mysql',$gEX_server,$gEX_userid,$gEX_password,$gEX_db);
if ($lens) {
    //$lens->dynEdit = 0; // disable designer editing
    
    $lens->colorNav = 'honeydew';
    $lens->colorNavBorder = 'lightsteelblue';
    $lens->colorBackground = 'lightseagreen';
    $lens->colorTitle = 'lavender';
    $lens->colorOdd = '#FCFCFC';
    $lens->colorEven = 'ghostwhite';
    $lens->detailLeftColor = 'ghostwhite';
    $lens->lang->topCaption = '<b><font color+black> &nbsp; PHPLens</font></b>';
    $lens->lang->bottomCaption = '<font color=black> &nbsp; <b>00&gt;</b> <font size=2>Visualize your Information &nbsp; (Page $PageNo) &nbsp;</font></font>';
    
    $lens->layoutTableHeader = 'align=center border=0 cellspacing=0 cellpadding=1 width=100%';
    $lens->pageSize = 1000;    // rows per page
    $lens->showRecNo = 0;    // 0=hide 1=left 2=right
    $lens->showDetails = false;    // Show details grid
    
    $lens->nameLens = 'PRODUCTNAME^Product^^^;SUPPLIERID^Supplier^^^;PRODUCTID^ID^^^;CATEGORYID^Category^^^';
    
    $lens->lookupLens = 'SUPPLIERID^select supplierid,companyname from suppliers;CATEGORYID^select categoryid, categoryname from categories';
    $lens->powerLens = 'PRODUCTNAME^<a target=botFrame href=outbottom.php?show={productid}><b>{ProductName}</b></a>';

    //-----------------
    // Generate HTML
    $lens->Render();
    $lens->Close();

}

?>
<h4>Notes</h4>
<p>This demo shows the use of a powerLens to set the anchor tag for PRODUCTNAME to drill down to details.

<p>Note that each PHPLens object is created using a different ID (the first parameter in the
constructor): <i>outtop</i> and <i>outbot</i> to ensure that there are no conflicts.</p>
<?php        
include ('./footer.php');
?>

Open in new window

http://phplens.com/lens/ex/outlook.htm
View Source:   Products (Outlook Interface)

this is the direct page to it.
http://phplens.com/lens/ex/outtop.php?src=true
Avatar of pmsguy

ASKER

eNarc,

I am looking to get the Calenar/Planner/PIM/Event Scheduler already built.

Your application is a framework to accomplish this goal, it is not the solution I am looking for.

Basically, an out of the box Planner.
ASKER CERTIFIED SOLUTION
Avatar of khbasha
khbasha
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial