SEO Consultation & Programming services starting from 5$ only

Status
Not open for further replies.

tjanos

Active Member
52
2013
10
0
Hi there,

I'm working as a webmaster for only 5$ for an hour. If you need SEO advice, or programming something I can help you.

(0-60 minutes = 5$, 60-120 min = 10$ ... etc)...

I have got 8-10years experience on:
PHP, SQL, JavaScript, CSS, Jquery, Joomla, etc... Just pm me...
 
8 comments
I can send you some references but they are available ing hungarian language, 'Cos I'm hungarian...


However I have two open source "project"...

Two guestbooks:
http://sourceforge.net/projects/vendegkonyvhu/?source=directory

it's multilanguagal:
http://sourceforge.net/projects/easyquestb/?source=directory

(And I have sent you a pm)

__________________
Added after 1 3 minutes:


This is the index file of first version of my cms.

I have template files. Like index.html, page1.html, page1_hun.html, etc.. And for modules I have got menu.html, login.html.. etc.. They are the template files..

With this PHP first I got the page I have looking for. For example http://something.com/contact.html

I got CONTACT page. In sql I saved that have the template of page1.html ...

And for content I saved: This is contact menu [contactform=sommail@mail.com] ... more text...

I make a variable named $template and I get the page1.html into it. After that I replace text [contactform=sommail@mail.com] to the contact form that in the contact template... And for every modul the system does it... And after that it prints the output.. It's simple... If I wanna change any design element I just have to modify my HTML documents and not php...




But for example:
<?php include('config.php');
error_reporting(1);
$uri = $_SERVER['REQUEST_URI'];
$uri = str_replace($DOMAIN,'',$uri);
$uri = str_replace('.html','',$uri);
$uri = explode('/',$uri); $uriszam = count($uri); $uriszam--;

$CURPAGE = $uri[1];
//print_r($uri);

if (isset($_SESSION['userData']['jog'])) {
$_SESSION['lathatosag'] = '1'; } else {
$_SESSION['lathatosag'] = '0'; }

$le = mysql_query("SELECT * FROM oldalak WHERE content_seo_name = '".$CURPAGE."'");
if ($CURPAGE =="" or mysql_num_rows($le) == 0){
if (mysql_num_rows($le) == 0 and $CURPAGE !=""){ $SQL = mysql_fetch_assoc(mysql_query("SELECT * FROM oldalak WHERE content_seo_name='404'"));
header($_SERVER["SERVER_PROTOCOL"]." 404 Not Found");
}
else
{
header($_SERVER["SERVER_PROTOCOL"]." 200 ok");
$SQL = mysql_fetch_assoc(mysql_query("SELECT * FROM oldalak WHERE fooldal='1'"));
}
}else{
$SQL = mysql_fetch_assoc(mysql_query("SELECT * FROM oldalak WHERE content_seo_name = '".$CURPAGE."'"));
}

?>

<?php
//$template = str_replace('[tartalom]',$SQL['content_content'],$template);
if($SQL['cache'] == 1){
if (file_exists('cache/'.$SQL['content_seo_name'].'.html'))
{
$template = file_get_contents('cache/'.$SQL['content_seo_name'].'.html');
print($template);
}
else
{
$template = tartalom();
$myFile = 'cache/'.$SQL['content_seo_name'].'.html';
$fh = fopen($myFile, 'w') or die("can't open file");
fwrite($fh, $template);
fclose($fh);
print($template);
}
}else{
$template = tartalom();
print($template);
}



function tartalom()
{
global $SQL, $MODULS, $uri, $WEBPAGEURL, $LIMA, $CURPAGE, $uriszam, $WEBPAGENAME, $CurrentURL, $TEMPLATE, $MOBIL, $DOMAIN;
global $TITLE;
include('functions.php');

// template választása
if ($SQL['template'] != '' and file_exists('template/'.$TEMPLATE.'/'.$SQL['template'])){
$template = file_get_contents('template/'.$TEMPLATE.'/'.$SQL['template'].'');
}else
{
if(file_exists('template/'.$TEMPLATE.'/'.$SQL['content_seo_name'].'.html'))
{ $template = file_get_contents('template/'.$TEMPLATE.'/'.$SQL['content_seo_name'].'.html'); } else {
$template = file_get_contents('template/'.$TEMPLATE.'/index.html'); }
}
// főmenü
$fomenu ='';
$template = str_replace('[BASEREWRITE]',$CurrentURL.'template/'.$TEMPLATE.'/',$template);
// főmenü
if ($MOBIL != true) {
if (!isset($_SESSION['login'])){
$menusor = mysql_query('SELECT * FROM oldalak WHERE (pozicio="fomenu" and publikus="1") and (lathatosag="0" or lathatosag="2") ORDER BY sorrend');
}else {
$menusor = mysql_query('SELECT * FROM oldalak WHERE pozicio="fomenu" and publikus="1" ORDER BY sorrend');
}

//$menusor = mysql_query('SELECT * FROM oldalak WHERE pozicio="fomenu" and publikus="1" ORDER BY sorrend');
$sorsz = 0;
while ($i = mysql_fetch_assoc($menusor))
{
$sorsz++;
if (($CURPAGE == $i["content_seo_name"]) or ($CURPAGE =='' and $sorsz == 1) ){ $currentt = ' class="current" '; } else { $currentt = 'class="fmenu"'; }
$fomenu .= '<li '.$currentt.'><a href="'.$WEBPAGEURL.'/'.$i["content_seo_name"].'.html" '.$currentt.'>'.$i["content_name"].'</a></li>';
}
$template = str_replace('[fomenu]',$fomenu,$template);
}
// főmenü vége


if ($SQL['meta_leiras'] != ""){ $template = str_replace('[meta_leiras]',$SQL['meta_leiras'],$template); }
if ($SQL['meta_kulcs'] != ""){ $template = str_replace('[meta_kulcs]',$SQL['meta_kulcs'],$template); }
$template = str_replace('[meta_egyeb]',$SQL['meta_egyeb'],$template);

$tomb = array();
// lathatosag | 0 = mindenki, 1 = csak regisztraltak, 2 = különbözik
if ($SQL['lathatosag'] == "0"){
$tartalom = mysql_query('SELECT * FROM tartalom WHERE oldal_id="'.$SQL["content_seo_name"].'" and lathatosag="0"') or print(mysql_error()); }
elseif (($SQL['lathatosag'] == "1"))
{
if (isset($_SESSION['login'])) {
$tartalom = mysql_query('SELECT * FROM tartalom WHERE oldal_id="'.$SQL["content_seo_name"].'" and lathatosag="0"');
} else{
header($_SERVER["SERVER_PROTOCOL"]." 403 Access denied");
$tartalom = mysql_query('SELECT * FROM tartalom WHERE oldal_id="403"');
}

}else
{
$tartalom = mysql_query('SELECT * FROM tartalom WHERE oldal_id="'.$SQL["content_seo_name"].'" and lathatosag="'.$_SESSION['lathatosag'].'"');
}
if (mysql_num_rows($tartalom) > 0)
{
while($i = mysql_fetch_assoc($tartalom))
{
$tomb[$i['content_position']][] = $i['content_content'];
}

}
foreach($tomb as $i => $j)
{
$kiprint = '';
foreach($j as $k)
{
$kiprint .= $k;
}
if ($_SESSION['jog'] == 'admin') { $szf0 = '<div id="'.$i.'" class="editable_content">'; $szf1 = '</div>';}

$template = str_replace('['.$i.']',$szf0.$kiprint.$szf1,$template);

}
$template = str_replace('[logo]',$WEBPAGENAME['content'],$template);



// modulok
global $OLDALCIME;
$OLDALCIME = $SQL['content_name'];
$mods = file_get_contents($CurrentURL.'template/'.$TEMPLATE.'/modul_list.txt');
//$mods2 = explode('\r\n',$mods);
$mods2 = preg_split('/[\n\r]+/', $mods);
if (is_array($mods2))
{
foreach($mods2 as $i)
{
if ($i != '') { include('modulok/'.$i.'/index.php'); }
}
}
$template = str_replace('[title]',$TITLE,$template);
$template = str_replace('[CURRENTURL]',$_SERVER['REQUEST_URI'],$template);
// kimenet tisztítása

//$template = preg_replace('/[\r\n]+/', ' ', $template);
//$template = preg_replace('/\s/', ' ', $template);
return $template;
}

/*
# HttpRequestDetails.php
# Copyright (c) 2002 by Dr. Herong Yang, http://www.herongyang.com/
#
print "<pre>\n";
print "\nContents of \$_GET:\n";
foreach ($_GET as $k => $v) {
print " $k = $v\n";
}
#
print "\nContents of \$_POST:\n";
foreach ($_POST as $k => $v) {
print " $k = $v\n";
}
#
print "\nContents of \$_COOKIE:\n";
foreach ($_COOKIE as $k => $v) {
print " $k = $v\n";
}
#
print "\nContents of \$_REQUEST:\n";
foreach ($_REQUEST as $k => $v) {
print " $k = $v\n";
}
#
print "\nContents of \$_SERVER:\n";
foreach ($_SERVER as $k => $v) {
print " $k = $v\n";
}
print "</pre>\n";
*/
?>
This is how I code these days...

__________________
Added after 5 Hours 23 minutes:

What does SEO means for me?

Search Engine Optimisation. Google says don't optimize your website for search engines, optimize your website for users. If it is optimized for users, than it's also optimized for search engines.

You don't only need great articles on your website and articles with bunch of keywords. :-D It's user friendly if your website loads quick. Its user friendly if the content is meaningfull. There are technologies that help Google to understood your page content much better, but the users cant see those elements. For example micro datas for your webpage. That's technology and not content.

What do you thing? Wich result is better to users? Slow pages with tons of ifframes, or a clean, fast website? Why whould Google show you the poorest result if it can show you that wich one is more user friendly? Thing about it and say to me only good articles can make your website crowded...
 
Last edited:
Hi there,

I have sent you a pm. If you have any questions just tell me. If you need a seo report I will make it for your site. If you need anything else, just tell me. I will be to happy to help you.

After my work completted I will be more happy if you live a review about my job. Thank you.
 
OMG this guy is so freaking awesome and so fast i cant imagine how anyone can be better than him and that fast.
And again thanks for the work mate :)
 
Status
Not open for further replies.
Back
Top