-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfindpartnerexperts.php
197 lines (85 loc) · 3.41 KB
/
findpartnerexperts.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
<?php
include_once('config/mysql-config.php');
include('includes/global-functions.inc.php');
$pageid=$_GET[pageid];
$CurrentPage = 'howitworks';
$partnersall = 'All areas of interest';
if($pageid!=null){
switch($pageid){
case '1':
$partnersall = 'Management Consulting';
$topicid=1;
break;
case '2':
$partnersall = 'Finance Consulting';
$topicid=2;
break;
case '3':
$partnersall = 'Career Planning';
$topicid=3;
break;
case '4':
$partnersall = 'MBA Schools';
$topicid=4;
break;
case '5':
$partnersall = 'University Admission';
$topicid=5;
break;
case '6':
$partnersall = 'Startup and Fundraising';
$topicid=6;
break;
default:
$partnersall = 'All areas of interest';
}
}
if(!empty($userdata))
{
$useremailid= $userdata['user_emailid'];
$query="select * from $TABLE_USER where user_emailid= '$useremailid'";
$userdetails=mysql_query($query);
$userdetailsfetch=@mysql_fetch_object($userdetails);
$_SESSION['USERINFO']=$userdetailsfetch;
}
else{
$id=$_SESSION[USERINFO][user_id];
$query="select * from $TABLE_USER where user_id= $id";
$userdetails=mysql_query($query);
$userdetailsfetch=@mysql_fetch_object($userdetails);
}
include('includes/header.php');
?>
<div class="bodytittle"><h1 style="width: 960px;margin:0 auto;border-bottom: 0;padding: 0;" class="bodytittle" align="left">How it works</h1></div>
<div class="contentcenter">
<div class="re_bodyleft" style="width: 220px;">
<ul class="re_subtopics">
<li style="width: 170px;"><a href="choosetopic.php">1. Choose a topic</a> </li>
<li style="width: 170px;background-position: 158px center;" class="subtopicsactive"><a href="findpartnerexperts.php">2. Find partners or experts</a> </li>
<li style="width: 170px;"><a href="meetus.php">3. Meet up!</a></li>
<li style="width: 170px;"><a href="workonfeedback.php">4. Work on feedback</a></li>
</ul>
</div>
<div class="re_bodyleft" style="width: 500px;padding-right: 20px;">
<div class="bodytittle1" style="line-height: 27px;">2. Find partners or experts that fit your goals and needs</div>
<div style="float:left;padding:18px 0;font-size: 13px;color:#333333;">
On PrepLounge you will find hundreds of candidates looking for partners to exchange and prepare for interviews. If you want more professional advice and feedback, our experienced experts are there for you.
<p style="margin-top: 10px;">
After choosing a topic of interest, look for either experts or other candidates, sorting and filtering them by education, experience, current status, interests etc.
</div>
<div style="float: left;">
<img src="images/findexpertbi1.jpg" border="0"/>
</div>
<div style="float:left;padding:18px 0;font-size: 13px; font-weight:normal;color:#333333;width: 100%;text-align: right;">
<a href="meetus.php"><img src="images/meetusbutton1.jpg" border="0"/></a></p>
</div>
</div>
<div class="re_bodyleft" style="width: 204px;background-color: #f8f8f8;padding:8px;text-align: center;">
<div style="padding-bottom: 13px;">
<img src="images/expertpic.jpg" border="0"/><br />
<label class="bodytittle1" style="font-size: 14px;">Placeholder</label></div>
</div>
</div>
<?
include('includes/footer.php');
?>