Tuesday, January 28, 2020

Daşınmaz əmlak elanları

Daşınmaz əmlak bazarının bütün iştirakçılarının faydalana biləcəyi onlayn platformadır. Layihə alıcılara daşınmaz əmlakın kirayəsi və alqı-satqısı haqqında elanların geniş bazasından rahat istifadə imkanı yaradır. Daşınmaz əmlak agentlikləri, tikinti şirkətləri və fiziki şəxslərə isə potensial alıcılarına təkliflərini qısa zamanda çatdırmaq üçün optimal imkan əldə edir.

Elanların yerləşdirilməsi

Istifadəçilərə sayta elan yerləşdirmək imkanı yaradır. Hər istifadəçi ay ərzində ödənişsiz olaraq limitsiz elan yerləşdirə bilər.

En son emlak elanlari

En son emlak elanlarina yekemlak.az saytinda baxa bilərsiniz.

Monday, July 22, 2013

Facebook Style Messaging System Database Design.

FROM 9LESSONS.İNFO

This post explains you how to design the Facebook Style message conversation system using PHP and MySQL. I have been working with messaging system at labs.9lessons.info, take a quick look at this post, how I have implemented database design tables and SQL queries. Login atlabs.9lessons.info and try this live demo.

Message Conversation Database Design.

Facebook Like System with Jquery, MySQL and PHP.

FROM THİS SİTE 9LESSONS.İNFO
Facebook like system is one of the best implementation in social network systems, may be in future based on like data Facebook going to launch semantic search engine. In this post I have explained how to implement like/unlike system database design and web implementation with PHP and jquery.


Database Design
To build the message conversation system, you have to create three tables such as UsersConversation and Conversation_Reply. This following image generated by using Mysql Workbench tool.

Users Table
User table contains all the users registration details.
CREATE TABLE `users` (
`uid` int NOT NULL PRIMARY KEY AUTO_INCREMENT ,
`username` varchar(25) NOT NULL UNIQUE,
`password` varchar(50) NOT NULL ,
`email` varchar(100) NOT NULL
);

PHP JQUERY FLASH LIVE STREMING BROADCAST

Source fromhttp://www.videowhisper.com

VideoWhisper > Live Streaming > PHP Stand Alone

Find on this page more info about PHP Live Streaming: 
online demo
installation instructions
integration and customization documentation

Enter Live Streaming Broadcast Demo
How to test:
1. Publish channel (you can specify a name or a StudioYYY name will be automatically generated)
2. Allow access to your webcam and select the camera/audio source if you have multiple on your system.
3. Click the "Channel Link" box (the link will be automatically copied)
4. Send link to your friends to watch or open a new browser window or tab and paste the url there to access the viewer interface for that channel or send
Installation Instructions for PHP Live Video Streaming Software
Before installing, make sure your hosting environment meets all requirements.
1. If you're not hosting RTMP with us go to RTMP Application Setup for installation details

2. Download archive, unzip and copy contents of ls_php to your web installation location. (Example: www.yoursite.com/live/)

3. Fill your RTMP path into settings.php

4. If you don't have SuPHP, enable write permissions (0777) for folders: snapshotsuploads

Jquery Timeago Implementation with PHP.

You Can get other information from and download files 9lessons.info
Nowadays timeago is the most important functionality in social networking sites, it helps to updating timestamps automatically. Recent days I received few requests from 9lessons readers that asked me how to implement timeago plugin with dynamic loading live data using PHP. In this post I am just presenting a simple tip to implement timeago in a better way.
Why Live Query
LiveQuery utilizes the power of jQuery selectors by binding events or firing callbacks for matched elements auto-magically, even after the page has been loaded and the DOM updated.